-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "js-boilerplate",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/gfortaine/kata.git"
},
"keywords": [
"software factory"
],
"author": "Guillaume FORTAINE <guillaume@quocian.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-plugin-transform-exponentiation-operator": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-cleanjs": "bodil/eslint-config-cleanjs",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-flowtype": "^2.30.3",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"husky": "^0.13.2",
"jest": "^19.0.2",
"lint-staged": "^3.3.1",
"prettier": "^0.21.0",
"prettier-eslint-cli": "^3.1.2"
},
"scripts": {
"test": "flow && lint-staged && jest --coverage",
"precommit": "yarn test",
"start": "babel-node ./src/kata.js"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier-eslint --write",
"git add"
]
}
}