This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.79 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
{
"name": "agile-system",
"version": "1.0.0",
"description": "Agile System",
"main": "lib/server.js",
"author": "Amir",
"license": "ISC",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "DEBUG=* nodemon lib/server.js",
"dev": "nodemon lib/server.js --watch",
"build": "webpack --config config/webpack.prod.js",
"start": "webpack serve --config config/webpack.dev.js"
},
"nodemonConfig": {
"restartable": "rs",
"delay": "2500",
"env": {
"PORT": "8080"
}
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"core-js": "^3.16.1",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.24.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.2.0",
"nodemon": "^2.0.12",
"react-refresh": "^0.9.0",
"sass": "^1.37.5",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"webpack": "^5.50.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"chalk": "^2.4.2",
"core-js": "^3.16.1",
"cors": "^2.8.5",
"debug": "^4.3.2",
"ejs": "^3.1.6",
"express": "^4.17.1",
"mongodb": "^4.1.0",
"morgan": "^1.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}