-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.89 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"license": "MIT",
"engines": {
"node": ">=10"
},
"name": "halation",
"scripts": {
"bootstrap": "yarn && lerna bootstrap",
"version": "lerna version",
"prerelease": "lerna version prerelease",
"clean": "rimraf dist",
"build": "npm run clean && lerna run build",
"watch": "lerna run watch",
"test": "lerna run test --passWithNoTests",
"lint": "lerna run lint",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-website": "cd website && yarn build && dockwalloper publish -d ./build -k uvGrSagjOrVNZqBaT8UGeJTLtZi250aj6MYPqWq89hVpeH6u"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lerna run lint -- --fix",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"private": true,
"author": "youchaoliu",
"devDependencies": {
"@babel/core": "^7.12.9",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@size-limit/preset-small-lib": "^4.9.0",
"@storybook/addon-essentials": "^6.1.9",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.1.9",
"@storybook/addons": "^6.1.9",
"@storybook/react": "^6.1.9",
"@types/invariant": "^2.2.34",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@xhs/relinx": "^4.1.5",
"babel-loader": "^8.2.2",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"rimraf": "^3.0.2",
"size-limit": "^4.9.0",
"state-tracker": "^2.2.1",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.1.2"
},
"dependencies": {
"invariant": "^2.2.4",
"tapable": "^1.1.3"
}
}