This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.86 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
{
"name": "askgovsg",
"version": "1.0.0",
"description": "Ask.gov.sg - Official Answers from the Singapore Government",
"main": "server/build/index.js",
"scripts": {
"start": "npm --prefix server start",
"build-frontend": "npm run build --prefix client",
"build-backend": "npm run build --prefix server",
"build-shared": "npm run build --prefix shared",
"build": "npm run build-shared && npm run build-frontend && npm run build-backend",
"server": "npm run dev --prefix server",
"client": "npm start --prefix client",
"dev": "concurrently \"./wait-for-it.sh localhost:3306 -t 0 -- npm run build-shared && sleep 5 && npm run server\" \"npm run client\" \"docker-compose up \"",
"postinstall": "npm --prefix server install && npm --prefix client install && npm --prefix shared install && npm run build-shared",
"audit-dep": "npm audit fix && npm --prefix server audit fix && npm --prefix client audit fix && npm --prefix shared audit fix",
"prepare": "husky install",
"test": "npm run build-shared && npm --prefix server test && CI=true npm --prefix client test -- --passWithNoTests",
"lint": "npm run --prefix server lint && npm run --prefix client lint && npm run --prefix shared lint",
"lint-ci": "npm run --prefix server lint-ci && npm run --prefix client lint-ci && npm run --prefix shared lint-ci",
"seq-cli": "npm run --prefix server seq-cli",
"storybook": "npm run --prefix client storybook"
},
"author": "Open Government Products, GovTech Singapore (https://open.gov.sg)",
"contributors": [
"Mayank Aggarwal"
],
"license": "MIT",
"devDependencies": {
"concurrently": "^7.6.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {}
}