-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
{
"name": "react-workout",
"version": "1.0.0",
"description": "using npm install <name> --save to install app runtime(src) dependencies, while switch to --save-dev for development(test, scaffold, build) dependencies",
"main": "index.js",
"scripts": {
"//start": "webpack && node server.js",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "gulp start-dev",
"start:prod": "gulp start-pro"
},
"author": "",
"dependencies": {
"alt": "^0.18.4",
"body-parser": "^1.15.0",
"d3": "^3.5.16",
"express": "^4.13.4",
"marked": "^0.3.5",
"mysql": "^2.10.2",
"react": "^0.14.8",
"react-bootstrap": "^0.28.5",
"react-d3-basic": "^1.6.11",
"react-d3-core": "^1.2.8",
"react-d3-tooltip": "^1.4.4",
"react-datetime": "^2.1.0",
"react-dom": "^0.14.7",
"react-rating": "^0.2.2",
"react-router": "^2.0.0",
"react-star-rating": "^1.4.2",
"react-star-rating-component": "^1.0.0",
"react-widgets": "^3.2.4",
"react-youtube": "^5.1.0"
},
"devDependencies": {
"babel-core": "^6.5.1",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"gulp": "^3.9.1",
"gulp-develop-server": "^0.5.1",
"gulp-install": "^0.6.0",
"gulp-nodemon": "^2.0.6",
"gulp-rename": "^1.2.2",
"gulp-strip-debug": "^1.1.0",
"gulp-uglify": "^1.5.3",
"http-server": "^0.8.5",
"if-env": "^1.0.0",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1",
"webpack-stream": "^3.1.0"
}
}