forked from koodiklinikka/koodiklinikka.fi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "koodiklinikka",
"version": "1.0.0",
"description": "Koodiklinikka homepage",
"author": "Riku Rouvila <riku.rouvila@leonidasoy.fi>",
"license": "MIT",
"main": "gulpfile.js",
"scripts": {
"start": "rm -rf public && gulp",
"build": "rm -rf public && gulp build",
"dev": "SERVER=http://localhost:9000/ ENV=development npm start",
"prod": "ENV=production npm start",
"lint": "eslint src",
"test": "mocha src/**/__tests__/*.js --compilers js:babel-core/register --require test/test-helper"
},
"keywords": [
"gulp",
"template"
],
"dependencies": {
"axios": "^0.4.2",
"classnames": "^2.2.1",
"font-awesome": "^4.4.0",
"http-server": "^0.11.1",
"lodash": "^3.9.1",
"parse-github-event": "^0.2.0",
"prop-types": "^15.5.10",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-stripe-checkout": "^2.4.0",
"timeago": "^0.2.0",
"twitter-text": "^1.11.0"
},
"devDependencies": {
"babel": "^6.1.18",
"babel-core": "^6.2.1",
"babel-eslint": "^4.1.3",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babelify": "^7.2.0",
"browser-sync": "^2.9.4",
"browserify": "^10.2.1",
"chai": "^3.0.0",
"envify": "^3.4.0",
"eslint": "^1.5.1",
"eslint-config-airbnb": "0.0.9",
"eslint-plugin-react": "^3.4.2",
"event-stream": "4.0.1",
"exorcist": "^0.4.0",
"gulp": "3.9.0",
"gulp-autoprefixer": "1.0.1",
"gulp-duration": "0.0.0",
"gulp-inject": "^3.0.0",
"gulp-jade": "^1.1.0",
"gulp-less": "^3.0.5",
"gulp-replace": "^0.5.3",
"gulp-rev": "^4.0.0",
"gulp-sourcemaps": "^1.3.0",
"gulp-streamify": "0.0.5",
"gulp-stylus": "^2.6.0",
"gulp-uglify": "~1.0.1",
"gulp-util": "~3.0.1",
"gulp-watch": "^4.3.4",
"jsdom": "^5.6.0",
"mocha": "^2.2.5",
"node-notifier": "^4.2.1",
"rimraf": "^2.3.4",
"surge": "^0.20.1",
"vinyl-source-stream": "~1.0.0",
"vinyl-transform": "^1.0.0",
"watchify": "^3.2.1"
},
"browserify": {
"transform": [
"babelify",
"envify"
]
}
}