-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.81 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
{
"name": "erics-node-todo",
"version": "1.0.0",
"main": "index.html",
"author": "Eric Constantinides",
"license": "MIT",
"scripts": {
"XXXlocal": "nodemon ./bin/www",
"XXXstart": "node ./bin/www",
"XXXweb": "node ./bin/www",
"start": "concurrently \"yarn run server\" \"yarn run client\"",
"server": "nodemon ./server",
"client": "node start-client.js"
},
"dependencies": {
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"debug": "^2.2.0",
"ejs": "^2.5.6",
"express": "^4.15.3",
"mongodb": "^2.2.28",
"mongoose": "^4.10.4",
"morgan": "^1.7.0",
"node-restful": "^0.2.6",
"nodemon": "^1.11.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-loader": "^7.1.1",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-preset-env": "^1.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"concurrently": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-babel": "^6.1.2",
"gulp-cached": "^1.1.1",
"gulp-changed": "^2.0.0",
"gulp-concat": "^2.6.1",
"gulp-folders": "^1.1.0",
"gulp-livereload": "^3.8.1",
"gulp-newer": "^1.3.0",
"gulp-newer-sass": "^1.0.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^1.11.1",
"gulp-uglify": "^1.5.4",
"path": "^0.12.7",
"webpack": "^3.1.0"
}
}