-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
72 lines (72 loc) · 1.72 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
{
"name": "poseidon",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"test": "jest",
"build": "lerna run build --parallel",
"precommit": "pretty-quick --staged",
"release": "lerna run test && yarn build && lerna publish",
"plop": "plop"
},
"version": "0.0.0",
"description": "web components",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/zcued/poseidon.git"
},
"author": "cuining <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/react": "^16.7.13",
"babel-eslint": "7.2.3",
"babel-preset-next": "^1.2.0",
"commitizen": "^3.0.5",
"cz-lerna-changelog": "^2.0.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.10.0",
"eslint-config-zcool": "^1.5.0",
"husky": "^1.0.0-rc.13",
"jest": "^23.4.2",
"jest-enzyme": "^7.0.1",
"jest-styled-components": "^6.3.1",
"lerna": "^3.15.0",
"lint-staged": "^8.1.0",
"plop": "^2.7.4",
"prettier": "^1.13.5",
"pretty-bytes": "^5.1.0",
"pretty-quick": "^1.6.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"styled-components": "^5.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"bugs": {
"url": "https://github.com/zcued/poseidon/issues"
}
}