-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1021 Bytes
/
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
{
"name": "dev_app",
"version": "1.0.0",
"description": "Weather Application with React",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test-lint": "eslint --ignore-pattern \"build\" --ignore-path .gitignore .",
"server": "cd server && node server.js",
"client": " cd client && npm run start",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\""
},
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^3.5.1",
"es6-promise": "^4.2.4",
"express": "^4.16.3",
"isomorphic-fetch": "^2.2.1",
"node-fetch": "^2.1.2",
"nodemon": "^1.17.4",
"react-router-dom": "^4.2.2",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"eslint-config-strongloop": "^2.1.0",
"eslint-plugin-react": "^7.8.2",
"module-alias": "2.0.6"
},
"_moduleAliases": {
"root": ".",
"routes": "./server/routes",
"server": "./server"
}
}