-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·78 lines (78 loc) · 2.16 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
{
"name": "mission-impossible",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest src --env=jsdom --runInBand --forceExit",
"eject": "react-scripts eject",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"bundle:stats": "NODE_ENV=production webpack --config ./node_modules/react-scripts/config/webpack.config.prod.js --profile --json > stats.json",
"bundle:analyse": "webpack-bundle-analyzer ./stats.json ./build --report --mode=static",
"lint:eslint": "eslint --ignore-pattern '!.eslintrc.js'",
"lint:staged": "lint-staged"
},
"dependencies": {
"@blueprintjs/core": "^1.35.0",
"faker": "^4.1.0",
"glamor": "^2.20.40",
"glamorous": "^4.11.2",
"moment": "^2.20.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-scripts": "1.0.17",
"redux": "^3.7.2",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-plugin-ramda": "^1.4.3",
"babel-polyfill": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"codecov": "^3.0.0",
"deep-freeze": "0.0.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.0.0",
"eslint-plugin-react": "^7.5.1",
"lint-staged": "^6.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.9.2",
"raf": "^3.4.0",
"ramda": "^0.25.0",
"redux-logger": "^3.0.6",
"webpack-bundle-analyzer": "^2.9.1"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add",
"lint:eslint"
],
"*.{css, json}": [
"prettier --write",
"git add"
]
},
"pre-commit": "lint:staged",
"babel": {
"presets": [
"latest",
"stage-0",
"react"
],
"plugins": [
"ramda"
]
}
}