-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.43 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": "frontend-test",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-links": "^5.2.1",
"@storybook/addons": "^5.2.1",
"@storybook/react": "^5.2.1",
"@testing-library/cypress": "^5.0.2",
"@testing-library/jest-dom": "^4.0.1",
"@testing-library/react": "^9.1.3",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-preset-jest": "^24.9.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"cypress": "^3.5.0",
"eslint": "^6.2.1",
"eslint-config-standard": "^14.0.0",
"eslint-config-standard-react": "^9.0.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"json-server": "^0.16.1",
"mini-css-extract-plugin": "^0.8.0",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.3",
"style-loader": "^1.0.0",
"stylelint": "^10.1.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-order": "^3.0.1",
"stylelint-webpack-plugin": "^0.10.5",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"scripts": {
"dev": "webpack-dev-server --open --hot --mode development",
"build": "webpack --mode production",
"test": "jest --config=jest.config.js --coverage --watchAll",
"test:ci": "jest --config=jest.config.js --coverage",
"cypress:open": "cypress open",
"stylelint:ci": "stylelint 'src/**/*.css/'",
"eslint:ci": "eslint -c .eslintrc 'src/**/*.js'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --watch",
"upfake": "json-server __mocks__/db.data.json --watch"
},
"dependencies": {
"axios": "^0.19.0",
"datamachine": "^1.2.0",
"g": "^2.0.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
}
}