-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "personal-website",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@types/html-webpack-plugin": "^3.2.6",
"@types/js-cookie": "^2.2.3",
"@types/node": "^16.11.33",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"css-loader": "^6.7.1",
"eslint": "^8.21.0",
"html-webpack-plugin": "^5.5.0",
"sass": "^1.54.3",
"sass-loader": "^13.0.2",
"source-map-loader": "^4.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"http-server": "^14.1.1",
"js-cookie": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-intl": "^5.10.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
},
"scripts": {
"build": "webpack",
"lint": "eslint . --ext .ts,.tsx",
"start": "http-server ./build -a 0.0.0.0 --proxy http://localhost:8080?",
"start:dev": "webpack serve --config webpack-dev.config.ts"
},
"engines": {
"node": "16.x"
}
}