-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "skilltracker",
"version": "1.0.0",
"description": "skilltracker",
"main": "webpack.config.js",
"scripts": {
"start": "nodemon node server/server.js",
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Benjamin Michareune",
"license": "MIT",
"dependencies": {
"concurrently": "^7.0.0",
"cookie-session": "^2.0.0",
"cross-env": "^7.0.3",
"express": "^4.17.3",
"mongodb": "^4.4.1",
"mongoose": "^6.2.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.3",
"css-loader": "^6.6.0",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.15",
"style-loader": "^3.3.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"nodemonConfig": {
"ignore": ["data/", "client/"]
}
}