-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "sympt-core",
"version": "1.0.0",
"description": "",
"scripts": {
"heroku-postbuild": "npm run build:server",
"build": "npm install && npm run build:server && npm run build:web && cd app && npm install",
"build:server": "cd server && npm run build",
"build:web": "cd web && npm run build",
"start:server": "cd server && npm start",
"start:web": "cd web && npm start",
"start": "concurrently npm:start:*",
"test": "npm run test:server",
"test:server": "cd server && npm test",
"lint:check": "cd server && npm run lint:check -s && cd ../web && npm run lint:check -s && cd ../app && npm run lint:check -s",
"lint:fix": "cd server && npm run lint:fix -s && cd ../web && npm run lint:fix -s && cd ../app && npm run lint:fix -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atude/seng3011-sympt.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/atude/seng3011-sympt/issues"
},
"homepage": "https://github.com/atude/seng3011-sympt#readme",
"dependencies": {
"@types/jest": "^25.1.4",
"concurrently": "^5.1.0",
"expo": "^36.0.2"
},
"devDependencies": {
"husky": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:check"
}
}
}