-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.13 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
79
80
81
82
83
84
85
86
87
{
"name": "ohtuprojekti",
"version": "0.1.0",
"compilerOptions": {
"experimentalDecorators": true,
"allowJs": true
},
"babel": {
"stage": [
"react",
"es2017",
"stage-1"
],
"plugins": [
"transform-decorators"
]
},
"jest": {
"coverageReporters": [
"text",
"html"
]
},
"private": true,
"dependencies": {
"@date-io/moment": "^1.3.5",
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"axios": "^0.18.0",
"env-cmd": "^8.0.2",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint-plugin-jest": "^21.22.1",
"html-to-react": "^1.3.4",
"is-touch-device": "^1.0.1",
"match-sorter": "^2.3.0",
"material-ui-pickers": "^2.2.4",
"moment": "^2.22.2",
"normalizr": "^3.2.4",
"notistack": "^0.7.0",
"prop-types": "^15.6.2",
"rc-tree-select": "^1.12.13",
"react": "^16.8.5",
"react-big-calendar-like-google": "0.0.3",
"react-dates": "^18.2.2",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^2.6.0",
"react-dnd-test-backend": "^7.4.0",
"react-dom": "^16.8.5",
"react-google-login": "^3.2.1",
"react-material-ui-form-validator": "^2.0.2",
"react-redux": "^6.0.1",
"react-scripts": "3.0.0",
"react-select": "^1.3.0",
"react-test-renderer": "^16.8.5",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "env-cmd .env react-scripts build",
"test": "react-scripts test",
"test-local": "react-scripts test --coverage --coverageDirectory=./coverage/jest",
"eject": "react-scripts eject",
"travis": "npm run test",
"testmode": "REACT_APP_TEST=test npm start",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"devDependencies": {
"chai": "^4.2.0",
"cypress": "^3.2.0",
"jsdoc": "^3.5.5",
"jsdom": "14.0.0",
"jsdom-global": "3.0.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}