-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
87 lines (87 loc) · 2.67 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": "tb-spike",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.7.4",
"@datapunt/matomo-tracker-react": "^0.3.1",
"@date-io/luxon": "1.x",
"@material-ui/core": "^4.5.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.40",
"@material-ui/pickers": "^3.2.9",
"babel-plugin-import": "^1.12.2",
"classnames": "^2.2.6",
"customize-cra": "^0.9.1",
"i18next": "^19.0.1",
"i18next-browser-languagedetector": "^4.0.1",
"i18next-fs-backend": "^1.0.6",
"i18next-xhr-backend": "^3.2.2",
"image-capture": "^0.4.0",
"jest": "^24.9.0",
"localforage": "^1.9.0",
"luxon": "^1.21.3",
"markdown-to-jsx": "^6.11.4",
"mobx": "^5.15.0",
"mobx-react": "^6.1.4",
"mobx-react-router": "^4.1.0",
"raw.macro": "^0.3.0",
"react": "^16.11.0",
"react-app-rewire-mobx": "^1.0.9",
"react-calendar": "^3.0.0",
"react-circular-progressbar": "^2.0.3",
"react-code-input": "^3.9.0",
"react-confetti": "^6.0.1",
"react-div-100vh": "^0.5.2",
"react-dom": "^16.11.0",
"react-i18next": "^11.2.5",
"react-joyride": "^2.2.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-swipeable": "^7.0.0",
"react-zoom-pan-pinch": "^2.1.3",
"styled-components": "^4.4.1"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "set CI=true && react-app-rewired test --env=jest-environment-jsdom-fifteen",
"eject": "react-app-rewired eject",
"test:coverage": "set CI=true && react-app-rewired test --coverage",
"serve_build": "react-app-rewired build; serve ./build",
"indonesia_netlify_build": "react-app-rewired build && . bin/generate-netlify-env.sh > build/config.js && . bin/generate-manifest.sh > build/manifest.json && bin/modify-build-artifacts.sh build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-syntax-decorators": "^7.18.6",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"jest-environment-jsdom-fifteen": "^1.0.2",
"react-app-rewired": "^2.1.6",
"source-map-explorer": "^2.5.2"
},
"jest": {
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/coverage/**",
"!**/serviceWorker.js",
"!**/index.js"
]
}
}