-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
{
"name": "attendance_lab",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack --mode development",
"build:js": "webpack --mode production",
"build:css": "csso ./frontend/static/frontend/css/style.css --output ./frontend/static/frontend/css/style.min.css",
"build": "npm run build:js && npm run build:css",
"watch": "webpack --mode development --watch"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@svgr/webpack": "^6.2.1",
"@types/lodash": "^4.14.175",
"@types/react-router-dom": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"css-loader": "^6.2.0",
"csso-cli": "^3.0.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.2.0",
"lodash-webpack-plugin": "^0.11.6",
"prettier": "^2.2.1",
"style-loader": "^3.2.1",
"typescript": "^4.3.5",
"webpack": "^5.16.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"@babel/runtime": "^7.11.1",
"@types/jest": "^26.0.24",
"@types/node": "^14.17.5",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"js-cookie": "^2.2.1",
"lodash": "^4.17.21",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0"
}
}