-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.19 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "weatherapp",
"version": "1.0.0",
"description": "team starnose mole",
"main": "./client/index.js",
"scripts": {
"start": "node ./server/server.js",
"test": "echo \"No testing library implemented\" && exit 1",
"prod": "export NODE_ENV=production; webpack serve",
"build": "export NODE_ENV=development; webpack serve",
"dev": "concurrently \"export NODE_ENV=development; webpack serve\" \"nodemon ./server/server.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/koyykdy/scratch-project-weatherapp.git"
},
"nodemonConfig": {
"ignore": [
"build",
"client"
]
},
"author": "David, Martin, Esther, Ryan, Chris",
"license": "ISC",
"bugs": {
"url": "https://github.com/koyykdy/scratch-project-weatherapp/issues"
},
"homepage": "https://github.com/koyykdy/scratch-project-weatherapp#readme",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/runtime-corejs3": "^7.17.8",
"assert": "^2.0.0",
"babel-loader": "^8.2.3",
"concurrently": "^7.0.0",
"core-js": "^3.21.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"dotenv-webpack": "^7.1.0",
"file-loader": "^6.2.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"supertest": "^6.2.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^5.5.0",
"net": "^1.0.2",
"node": "^17.7.1",
"node-fetch": "^3.2.3",
"node-polyfill-webpack-plugin": "^1.1.4",
"nodemon": "^2.0.15",
"pg": "^8.7.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.2",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.1",
"stream": "^0.0.2",
"util": "^0.12.4",
"webpack-node-externals": "^3.0.0"
}
}