-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
84 lines (84 loc) · 2.11 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "zeus-ui",
"version": "1.1.0-alpha.2",
"description": "zcool ui libary",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "[email protected]:zcued/zeus.git"
},
"bugs": {
"url": "https://github.com/zcued/zeus/issues"
},
"keywords": [
"react",
"component",
"styled-components"
],
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"styled-components": "^5.2.0"
},
"dependencies": {
"react-modal": "^3.5.1",
"react-popper": "^1.0.0",
"react-select": "^2.0.0",
"react-slick": "^0.26"
},
"devDependencies": {
"@types/jest": "^23.3.7",
"@types/node": "14.6.2",
"@types/react": "^16.4.0",
"awesome-typescript-loader": "^5.1.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.5",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"husky": "^0.14.3",
"jest": "^23.6.0",
"jest-enzyme": "^7.0.0",
"jest-styled-components": "^7.0.3",
"lint-staged": "^7.2.0",
"npm-run-all": "^4.1.2",
"prettier": "1.14.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-hot-loader": "^4.3.4",
"styled-components": "^5.2.0",
"stylelint": "^9.4.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.2",
"ts-jest": "^23.1.2",
"tslint": "^5.11.0",
"tslint-config-zcool": "^1.7.0",
"typescript": "^2.9.2",
"webpack": "^4.16.4",
"webpack-dev-server": "^3.1.5"
},
"scripts": {
"start": "cd site && node server.js",
"lint": "npm-run-all lint:stylelint lint:tslint",
"lint:stylelint": "stylelint '**/*.tsx'",
"lint:tslint": "tslint -p . -t verbose",
"pretest": "npm run lint",
"test": "jest --detectOpenHandles --verbose",
"build": "rm -rf lib && tsc",
"watch": "tsc -w",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint --fix",
"git add"
]
}
}