-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.56 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": "schedule-crapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.2.5",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"antd": "^4.3.3",
"components": "^0.1.1",
"core-js": "^3.6.5",
"fontsource-roboto": "^3.0.3",
"graphql": "^15.4.0",
"interactjs": "^1.9.19",
"moment": "^2.26.0",
"react": "^16.13.1",
"react-calendar-timeline": "^0.27.0",
"react-dom": "^16.13.1",
"react-window": "^1.8.6",
"react-window-infinite-loader": "^1.0.5",
"time-entry": "^0.1.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/preset-typescript": "^7.12.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^26.0.15",
"@types/node": "^14.0.13",
"@types/react": "^16.9.36",
"@types/react-calendar-timeline": "^0.26.2",
"@types/react-dom": "^16.9.8",
"@types/react-window": "^1.8.2",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-loader": "^8.1.0",
"css-loader": "^5.0.1",
"dotenv": "^8.2.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"jest": "^26.6.3",
"node-sass": "^5.0.0",
"path": "^0.12.7",
"prettier": "^2.1.2",
"sass": "^1.28.0",
"sass-loader": "^10.0.5",
"style-loader": "^2.0.0",
"typescript": "^3.9.7",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"type-check": "tsc --noEmit",
"prebuild": "npm run type-check && rm -rf ./build",
"build": "./node_modules/.bin/webpack --mode=${NODE_ENV}",
"build:types": "tsc --emitDeclarationOnly",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test:coverage": "jest --coverage",
"test": "jest",
"watch": "npm run build --watch"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}