-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 1.32 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": "sgds",
"version": "0.0.0",
"description": "SGDS styling libraries monorepo",
"repository": {
"type": "git",
"url": "https://github.com/govtechsg/sgds.git"
},
"license": "MIT",
"author": "Tey Liang Tai",
"main": "",
"scripts": {
"prepare": "husky install",
"portal:install": "cd portal && npm i && bundle install",
"lib:install": "cd lib/sgds && npm i",
"sgds-x-family:install": "cd lib/sgds-x-family && npm i",
"install": "concurrently \"npm run lib:install\" \"npm run portal:install\" \"npm run sgds-x-family:install\"",
"lib:build": "cd lib/sgds && npm run build",
"portal:build": "cd portal && npm run build",
"build": "npm run lib:build && npm run portal:build",
"sgds-x-family:build": "cd lib/sgds-x-family && npm run build",
"portal:dev": "cd portal && npm run dev",
"react-select:dev": "cd lib/sgds-x-family && npm run react-select:dev"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"concurrently": "^7.0.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}