-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.5 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
{
"name": "react-s3-browser",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"babel-preset-mobx": "^2.0.0",
"customize-cra": "^1.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-matchers": "^7.1.2",
"jest-enzyme": "^7.1.2",
"react-app-rewired": "^2.1.5",
"react-scripts": "^4.0.1",
"react-test-renderer": "^17.0.1",
"sinon": "^9.2.0"
},
"dependencies": {
"aws-sdk": "^2.779.0",
"classnames": "^2.2.6",
"mobx": "^6.0.4",
"mobx-react": "^7.0.5",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.1.2"
},
"scripts": {
"start": "PORT=3099 react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"babel": {
"presets": [
"react-app",
"babel-preset-mobx"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": false
}
]
]
},
"jest": {
"setupFilesAfterEnv": [
"./node_modules/jest-enzyme/lib/index.js"
]
}
}