-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"fix": "prettier --check 'src/**/*.{ts,tsx}'",
"clean": "rm -rf build",
"lint": "eslint src/ --ext .ts,.tsx",
"start": "webpack serve --open --mode=development",
"build": "webpack --mode production"
},
"author": "",
"license": "ISC",
"dependencies": {
"@mantine/core": "^3.1.9",
"@mantine/hooks": "^3.1.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "6"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/runtime": "^7.16.3",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"babel-loader": "^8.2.3",
"eslint": "^8.2.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
}
}