-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 KB
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
44
45
46
47
{
"name": "root",
"private": true,
"scripts": {
"build": "lerna exec --parallel 'BABEL_ENV=build babel --root-mode upward lib --out-dir dist --extensions .js --delete-dir-on-start --no-comments'",
"commit": "git-cz",
"lint": "run-p -c lint:*",
"lint:js": "eslint 'packages/**/*.js'",
"lint:css": "stylelint 'packages/**/*.css'",
"prerelease": "npm run build",
"release": "lerna publish --no-commit-hooks",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^12.0.1",
"@storybook/html": "^6.0.21",
"babel-loader": "^8.0.6",
"commitizen": "^4.0.3",
"cz-lerna-changelog": "^2.0.2",
"eslint": "^7.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^4.0.2",
"lerna": "^3.16.4",
"lint-staged": "^10.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.1",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^20.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.6.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}