-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "scratch-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server/server.js",
"build": "cross-env NODE_ENV=production webpack",
"dev": "concurrently \"NODE_ENV=development nodemon ./server/server\" \"NODE_ENV=development webpack serve --hot --open\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Axolotl4Life/Scratch_Project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Axolotl4Life/Scratch_Project/issues"
},
"homepage": "https://github.com/Axolotl4Life/Scratch_Project#readme",
"dependencies": {
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-session": "^1.17.3",
"jest": "^29.0.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.1",
"node-fetch": "^3.2.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.0",
"sass": "^1.54.9"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.2.5",
"concurrently": "^7.4.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.23.1",
"eslint-plugin-react": "^7.31.8",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.20",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}