-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.69 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
{
"name": "human-robot",
"version": "1.0.0",
"description": "semi-automatic pdf tables extraction system",
"main": "server.js",
"scripts": {
"start": "\"concurrently \"nodemon --inspect server\" \"cd client && npm start\" -n \"server,client\"",
"test": "echo \"Error: no test specified\" && exit 1",
"prod": "git pull & pm2 stop server & pm2 delete server & npm install && cd client && npm install && npm run build && cd .. && pm2 start server.js && pm2 save"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivanduka/human-robot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ivanduka/human-robot/issues"
},
"homepage": "https://github.com/ivanduka/human-robot#readme",
"dependencies": {
"@material-ui/core": "^4.10.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fast-glob": "^3.2.2",
"ky": "^0.19.1",
"log4js": "^6.2.0",
"material-table": "^1.58.2",
"morgan": "^1.10.0",
"mysql2": "^2.1.0",
"react-syntax-highlighter": "^12.2.1"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/react-router-dom": "^5.1.5",
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-flowtype": "^5.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"prettier": "^2.0.5"
},
"prettier": {
"quoteProps": "preserve",
"trailingComma": "all",
"printWidth": 120
}
}