forked from strapi/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.69 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
44
45
46
47
48
{
"name": "design-system",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:strapi/design-system.git",
"license": "MIT",
"private": true,
"scripts": {
"analyze:bundle": "lerna run analyze:bundle --stream",
"bootstrap": "lerna bootstrap",
"build-storybook": "lerna run build-storybook --stream",
"build": "lerna run build --stream --scope=@strapi/icons && lerna run build --stream --scope=@strapi/design-system",
"generate": "plop",
"lint-staged": "lerna run lint-staged --stream --",
"lint": "lerna run lint --stream",
"setup": "yarn && yarn bootstrap && yarn build",
"specify:pull": "specify pull",
"specify:sync": "specify sync",
"storybook": "lerna run storybook --stream",
"test:e2e": "lerna run test:e2e --stream",
"test:e2e:ci": "lerna run test:e2e:ci",
"test:e2e:watch": "lerna --scope @strapi/design-system exec -- yarn test:e2e:watch",
"test": "lerna run test --stream",
"test:watch": "lerna --scope @strapi/design-system exec -- yarn test:watch",
"test:snapshots": "lerna --scope @strapi/design-system exec -- yarn test -u",
"release": "lerna version --no-push --no-git-tag-version && yarn setup && git commit -am \"Releasing\" && lerna publish from-package --contents dist"
},
"devDependencies": {
"@specifyapp/cli": "^0.0.51",
"fs-extra": "^10.0.0",
"husky": "=4",
"jest-styled-components": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": ">=10",
"plop": "^2.7.4",
"rimraf": "^3.0.2",
"url-loader": "^4.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": "yarn lint-staged"
},
"dependencies": {}
}