-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.53 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": "crews",
"version": "0.5.1",
"private": true,
"dependencies": {
"axios": "^0.19.2",
"babel-plugin-react-css-modules": "^3.4.2",
"classnames": "^2.2.6",
"prop-types": "^15.6.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^4.2.2",
"rxjs": "^6.5.4",
"styled-components": "^3.3.2"
},
"scripts": {
"start": "webpack-dev-server --open --mode development --config ./config/webpack.config.dev.js --port 3000",
"build": "webpack --mode production --config ./config/webpack.config.prod.js",
"test": "jest --env=jsdom --coverage --config=jest.config.js",
"storybook": "start-storybook -p 9001 -c .storybook",
"lint": "yarn run eslint ./src"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@storybook/addon-knobs": "^5.1.8",
"@storybook/addon-viewport": "^5.1.3",
"@storybook/react": "^5.1.3",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"autoprefixer": "7.1.6",
"babel-eslint": "8.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.5.1",
"babel-preset-react-app": "^3.1.1",
"case-sensitive-paths-webpack-plugin": "2.1.1",
"chalk": "1.1.3",
"css-loader": "0.28.7",
"dotenv": "4.0.0",
"dotenv-expand": "4.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-react-app": "^2.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "1.9.0",
"eslint-plugin-flowtype": "2.39.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-hooks": "^1.6.1",
"file-loader": "1.1.5",
"fs-extra": "3.0.1",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"object-assign": "4.1.1",
"postcss-flexbugs-fixes": "3.2.0",
"postcss-loader": "2.0.8",
"promise": "8.0.1",
"raf": "3.4.0",
"react-test-renderer": "^16.12.0",
"resolve": "1.6.0",
"style-loader": "0.19.0",
"sw-precache-webpack-plugin": "0.11.4",
"terser-webpack-plugin": "^2.3.5",
"url-loader": "0.6.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-manifest-plugin": "^2.2.0",
"whatwg-fetch": "2.0.3"
}
}