forked from HyeeunMok/employee-management-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.44 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
{
"name": "plex-employees",
"version": "0.1.0",
"node version": "12.16.1",
"license": "None provided",
"private": true,
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"concurrently": "^3.6.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"nodemon": "^1.17.5",
"react": "^16.4.1",
"react-bootstrap": "^1.0.0-beta.16",
"react-dom": "^16.4.1",
"react-router-dom": "^5.1.2",
"react-scripts": "1.1.4",
"react-table": "^6.10.0",
"sqlite3": "^4.1.1",
"styled-components": "^5.0.1"
},
"scripts": {
"start": "concurrently --kill-others \"node server\" \"npm run start:react-app\"",
"start:react-app": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"custom:build": "nodemon src/scripts/build.js --watch src/data --ext .md",
"custom:start": "concurrently --kill-others \"npm run custom:build\" \"npm run start\""
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.5.0",
"install-peerdeps": "^2.0.1",
"prettier": "^1.19.1"
}
}