-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.97 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
85
86
87
88
89
90
91
92
93
94
{
"name": "vormir-repo",
"version": "0.4.0",
"description": "Vormir",
"author": "vormir",
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"clean": "lerna clean",
"ls": "lerna ls",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"eslint": "eslint --config ./.eslintrc ./packages",
"stylelint": "stylelint ./packages/**/*.css",
"lint": "yarn eslint && yarn stylelint",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check",
"publish": "lerna publish",
"prettier": "prettier ./packages/**/*.js",
"lint-staged": "lint-staged",
"postinstall": "yarn bootstrap",
"commit": "npx git cz",
"release": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "^7.4.0",
"@commitlint/config-conventional": "^7.3.1",
"all-contributors-cli": "5.4.1",
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-jest": "23.6.0",
"babel-plugin-css-modules-transform": "1.6.1",
"babel-plugin-react-intl": "2.4.0",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-plugin-transform-require-ignore": "0.1.1",
"babel-plugin-universal-import": "1.5.3",
"babel-plugin-webpack-alias": "2.1.2",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"cross-env": "5.2.0",
"cz-conventional-changelog": "2.1.0",
"enhanced-resolve": "3.4.1",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.4",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-import-resolver-webpack": "0.8.4",
"eslint-plugin-flowtype": "2.49.3",
"eslint-plugin-graphql": "2.1.1",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-react": "7.9.1",
"flow-bin": "0.67.1",
"flow-coverage-report": "0.5.0",
"flow-typed": "2.5.1",
"husky": "1.3.1",
"identity-obj-proxy": "3.0.0",
"jest": "23.6.0",
"jest-transform-graphql": "2.1.0",
"lerna": "2.11.0",
"lint-staged": "7.2.2",
"markdown-loader-jest": "0.1.1",
"prettier": "1.13.4",
"react": "16.4.2",
"react-addons-test-utils": "15.6.2",
"react-dom": "16.4.2",
"react-hot-loader": "4.3.4",
"react-test-renderer": "16.4.2",
"standard-version": "^4.4.0",
"stylelint": "8.4.0",
"stylelint-config-css-modules": "1.2.0",
"stylelint-config-prettier": "1.0.2",
"stylelint-config-standard": "17.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}