-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "react-ts",
"version": "1.0.0",
"description": "React and TypeScript example starter project",
"keywords": [
"typescript",
"react",
"starter"
],
"main": "src/index.tsx",
"dependencies": {
"@azure/msal-browser": "^2.0.0-beta.0",
"@material-ui/core": "4.9.7",
"@material-ui/icons": "4.9.1",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@types/react-lazyload": "^2.6.0",
"@types/react-resize-detector": "^4.2.0",
"@types/react-virtualized": "^9.21.9",
"@types/uuid": "^7.0.2",
"js-sha256": "^0.9.0",
"jsondiffpatch": "^0.4.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-lazyload": "^2.6.7",
"react-resize-detector": "^4.2.3",
"react-router-dom": "5.1.2",
"react-scripts": "3.3.0",
"react-virtualized": "^9.21.2",
"snapsvg-cjs": "0.0.6",
"ts-polyfill": "^3.8.2",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/react-router-dom": "^5.1.3",
"@types/snapsvg": "^0.5.0",
"copyfiles": "^2.2.0",
"patch-package": "^6.2.1",
"typescript": "3.7.5"
},
"scripts": {
"start": "react-scripts start",
"postinstall": "copyfiles -u 3 node_modules/@types/snapsvg/* node_modules/@types/snapsvg-cjs/ && patch-package",
"copy-public": "copyfiles -u 1 public/.htaccess public/*.php public/api/* src/version.json build/",
"build": "copyfiles -u 1 src/version.json public/ && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}