-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.16 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
43
{
"name": "root",
"private": true,
"author": {
"name": "Buildit | Wipro Digital",
"url": "https://buildit.wiprodigital.com/"
},
"license": "MIT",
"scripts": {
"lerna": "lerna",
"lerna:bootstrap": "lerna bootstrap",
"commit": "git-cz",
"lint": "lerna run lint",
"stylelint-check": "stylelint-config-prettier-check",
"test": "lerna run test",
"test:a11y": "lerna run test:a11y",
"build": "lerna run build",
"start": "lerna run start --parallel",
"clean:cdn": "del 'cdn-dist/**/*'",
"clean": "npm run clean:cdn && lerna run clean",
"semantic-release": "lerna run semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@commitlint/travis-cli": "^9.0.1",
"bundlesize": "^0.18.0",
"commitizen": "^4.1.2",
"cz-lerna-changelog": "^2.0.3",
"del-cli": "^3.0.1",
"file-size-report": "^1.0.2",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"dependencies": {}
}