-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 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
{
"version": "0.0.1",
"author": "TandemSeven <github@tandemseven.com>",
"description": "A collection of reusable components developed at Genpact T7",
"license": "MIT",
"scripts": {
"add": "lerna add",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"bump": "lerna version --no-push",
"clean": "lerna clean --yes",
"create": "plop",
"docz": "docz",
"docz:build": "npm run docz -- build",
"docz:dev": "npm run docz -- dev",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint **/*.css",
"lint:js": "eslint **/*.js --cache",
"postinstall": "npm run bootstrap",
"publish": "lerna publish from-package",
"predocz": "npm run bootstrap",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"autoprefixer": "^9.4.7",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"cssnano": "^4.1.8",
"docz": "^0.13.7",
"docz-theme-default": "^0.13.7",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"execa": "^1.0.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jest-css-modules": "^1.1.0",
"lerna": "^3.10.7",
"mini-css-extract-plugin": "^0.5.0",
"plop": "^2.2.0",
"postcss-loader": "^3.0.0",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"private": true
}