-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 1.24 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
{
"name": "lectures-scheduler",
"version": "5.0.0",
"description": "Application to schedule lectures",
"repository": "github:Kyczan/lectures-scheduler",
"scripts": {
"build": "rimraf build && npm-run-all --parallel build:server build:client",
"postbuild": "mkdir build && cp -r server/build/* build && mkdir build/client && cp -r client/build/* build/client",
"build:client": "(cd client && npm run build)",
"build:server": "(cd server && npm run build)",
"start": "docker-compose up",
"lint": "eslint \"server/src/**/*.js\" \"client/src/**/*.+(js|jsx)\"",
"lint:fix": "eslint --fix \"server/src/**/*.js\" \"client/src/**/*.+(js|jsx)\"",
"test": "npm run lint",
"init:install": "npm i & (cd server && npm i) & (cd client && npm i)",
"init:install:ci": "npm ci & (cd server && npm ci) & (cd client && npm ci)"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-watch": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "1.19.1",
"rimraf": "^2.7.1"
}
}