-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "express_react_example",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"start:dev": "nodemon server.js",
"build": "cd client && yarn && yarn build"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"pg": "^8.2.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"sequelize": "^5.21.3",
"tabler-react": "^1.30.1",
"yarn": "^1.21.1"
},
"description": "",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "2.5.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
},
"engines": {
"node": "16.x"
}
}