-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.18 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
{
"name": "memory-game",
"version": "0.0.1",
"main": "index.js",
"license": "UNLICENSED",
"scripts": {
"commit": "git cz",
"start:storybook": "cross-env NODE_ENV=dev start-storybook -p 9001 -c ./internals/storybook",
"start:dev": "cross-env NODE_ENV=development webpack-dev-server --config internals/webpack/webpack.dev.babel.js --inline --hot",
"build": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.prod.babel.js -p --progress",
"prebuild": "mkdirp build && ncp src/assets build/assets",
"test": "cross-env NODE_ENV=test jest --coverage"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 98,
"branches": 91,
"functions": 98,
"lines": 98
}
},
"moduleDirectories": [
"node_modules",
"src"
],
"setupTestFrameworkScriptFile": "<rootDir>/internals/test/test-bundler.js",
"testRegex": "tests/.*\\.test\\.js$"
},
"devDependencies": {
"@storybook/react": "^3.2.3",
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"commitizen": "^2.9.6",
"cross-env": "^5.0.5",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.9.1",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.2.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^20.0.4",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"prop-types": "^15.6.0",
"react-test-renderer": "^15.6.1",
"regenerator-runtime": "^0.10.5",
"serve": "^6.2.0",
"source-map-loader": "^0.2.1",
"webpack": "^3.5.3",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"axios": "^0.17.0",
"lodash": "^4.17.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"styled-components": "^2.1.2"
}
}