-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "react-flicker",
"version": "0.1.0",
"author": "lookapanda",
"license": "MIT",
"dependencies": {
"dog-names": "^1.0.2",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-scripts": "1.0.17"
},
"scripts": {
"start": "styleguidist server",
"build": "styleguidist build",
"lint": "eslint src",
"jest": "jest --env=jsdom",
"test": "run-s lint jest",
"eject": "react-scripts eject",
"precommit": "lint-staged"
},
"devDependencies": {
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.7",
"enzyme": "^3.0.0",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.3.0",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.1.0",
"lint-staged": "^4.2.2",
"npm-run-all": "^4.1.1",
"prettier": "^1.7.0",
"react-styleguidist": "^6.0.25",
"react-test-renderer": "^16.0.0",
"style-loader": "^0.19.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|sass|scss|postcss)$": "identity-obj-proxy"
},
"collectCoverage": true
}
}