-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "dt",
"version": "1.0.0",
"main": "index.tsx",
"repository": "[email protected]:karpo518/dt.git",
"author": "[email protected]",
"license": "MIT",
"homepage": "/dt/",
"dependencies": {
"@apollo/client": "^3.7.11",
"bootstrap": "^5.2.3",
"clsx": "^1.2.1",
"css-loader": "^6.7.3",
"formik": "^2.2.9",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-bootstrap": "^2.7.2",
"react-dom": "^18.2.0",
"react-router-dom": "^6.10.0",
"react-select": "^5.7.2",
"sass": "^1.61.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"yup": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"babel-loader": "^9.1.2",
"compression-webpack-plugin": "^10.0.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "2.8.7",
"typescript": "^5.0.4",
"webpack": "^5.78.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
},
"scripts": {
"build": "webpack --mode production",
"start": "webpack serve --mode development --env development --open --hot",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
}