-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
37 lines (37 loc) · 1.38 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": "irrc-madwish",
"version": "1.0.0",
"description": "This is a student-teacher matching application made for the MAD WISH initiative. MAD WISH pairs migrant workers in Singapore with volunteer English-language mentors. It is an initiative by [It's Raining Raincoats](https://www.facebook.com/itsrainingraincoats/).",
"main": "index.js",
"scripts": {
"install.frontend": "npm --prefix frontend install",
"install.backend": "npm --prefix backend install",
"build": "npm run --prefix frontend build",
"start": "npm run --prefix backend db:migrate && npm run --prefix backend start",
"postinstall": "npm run clean && concurrently \"npm run install.frontend\" \"npm run install.backend\"",
"serve": "concurrently \"npm run --prefix frontend serve\"",
"clean": "concurrently \"rm -rf frontend/node_modules\" \"rm -rf backend/node_modules\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TechLadies/irrc-madwish.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/TechLadies/irrc-madwish/issues"
},
"homepage": "https://github.com/TechLadies/irrc-madwish#readme",
"devDependencies": {
"concurrently": "^5.3.0",
"husky": "^4.3.6",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}