-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 KB
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
{
"name": "sns-pushing-message",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "nodemon -w lib ./bin/www",
"startup": "node ./bin/www",
"clear": "del-cli lib/**",
"build": "npm run clear && babel src --out-dir lib && webpack -p",
"dev": "npm run clear && babel src --out-dir lib --watch",
"dev:web": "webpack -w --profile --colors --progress"
},
"dependencies": {
"aws-sdk": "^2.181.0",
"body-parser": "~1.17.1",
"classnames": "^2.2.5",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"express": "~4.15.2",
"fs-extra": "^5.0.0",
"morgan": "~1.8.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"serve-favicon": "~2.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"del-cli": "^1.1.0",
"nodemon": "^1.14.11",
"webpack": "^3.10.0"
},
"babel": {
"presets": [
"env",
"react",
"stage-2"
]
}
}