-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "WebWeather",
"version": "1.0.0",
"description": "Weather app using React/Express",
"main": "index.js",
"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\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomasyoung-audet/WebWeather.git"
},
"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": "^6.8.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"
},
"keywords": [],
"author": "thomasyoung-audet",
"license": "ISC",
"bugs": {
"url": "https://github.com/thomasyoung-audet/WebWeather/issues"
},
"homepage": "https://github.com/thomasyoung-audet/WebWeather#readme"
}