-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.39 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
{
"name": "cl-judge",
"version": "1.0.0",
"description": "online judge version 2.0 frontend and backend",
"main": "index.js",
"scripts": {
"test": "cd server && npm run test && cd ../frontend && npm run test",
"lint": "cd server && npm run lint && cd ../frontend && npm run lint",
"lint:fix": "cd server && npm run lint:fix && cd ../frontend && npm run lint:fix",
"server": "cd server && node index.js",
"dev": "cd frontend && npm run dev",
"dep:install:root": "rm -rf node_modules && npm install",
"dep:install:frontend": "cd frontend && rm -rf node_modules && npm install && cd ..",
"dep:install:server": "cd server && rm -rf node_modules && npm install && cd ..",
"dep:install": "npm run dep:install:root && npm run dep:install:frontend && npm run dep:install:server"
},
"author": "Cyberlabs",
"license": "ISC",
"devDependencies": {
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^2.2.1"
},
"dependencies": {
"cron": "^1.8.2"
}
}