-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.09 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "deer-ui",
"version": "4.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"files": [
"dist"
],
"scripts": {
"postinstall": "npm run compile:core:scss",
"compile:core:scss": "cd packages/core; npm run complie:scss:local",
"publish:all": "npm run publish:core; npm run publish:enhance",
"publish:core": "npm publish ./dist/core --access public",
"publish:enhance-ui": "npm publish ./dist/enhance-ui --access public",
"publish:all:lerna": "lerna publish",
"release": "npm run build:all; npm run publish:all:lerna",
"release:core": "npm run build:all; npm run publish:core",
"release:enhance-ui": "npm run build:all; npm run publish:enhance-ui",
"build:all": "rm -rf ./dist; tsc; lerna run build",
"start": "cd website; yarn; yarn start",
"build": "cd website; yarn; yarn build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/minimal-studio/deer-ui.git"
},
"keywords": [
"UI"
],
"author": "Alex",
"license": "MIT",
"peerDependencies": {
"@mini-code/base-func": "^1.1.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-transition-group": "^2.5.0"
},
"devDependencies": {
"@mini-code/base-func": "^1.1.0",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-eslint": "10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-react-app": "^5.2.1",
"eslint-loader": "3.0.3",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"fs-extra": "^9.0.0",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"sass": "^1.27.0",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"react-hot-loader": "^4.12.20",
"react-transition-group": "^4.0.1",
"ts-jest": "^25.2.1",
"typescript": "^4.0.3"
},
"dependencies": {
"classnames": "^2.2.6"
}
}