-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 861 Bytes
/
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
{
"name": "@jswork/styled-atomics",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/afeiship/styled-atomics.git"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/jest/**",
"**/jest"
]
},
"devDependencies": {
"lerna": "^3.22.1"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"indentation": 4
}
},
"scripts": {
"lerna:clean": "lerna clean",
"lerna:list": "lerna list",
"lerna:bootstrap": "lerna bootstrap",
"build:docs": "cd ./packages/websites && yarn build",
"start": "cd ./packages/websites && yarn start",
"build:all": "lerna run build --no-private",
"build": "lerna run build --since master --no-private",
"publish": "npm run build && lerna publish --no-private"
}
}