-
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": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"bulma": "0.9.4",
"classnames": "2.3.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-helmet": "6.1.0",
"react-router-dom": "6.3.0",
"react-svg": "15.0.1"
},
"devDependencies": {
"@parcel/transformer-sass": "2.5.0",
"@types/classnames": "2.3.1",
"@types/node": "17.0.21",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/react-helmet": "6.1.5",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"http-proxy-middleware": "2.0.3",
"node-sass": "7.0.1",
"parcel": "2.5.0",
"parcel-plugin-ogimage": "1.2.0",
"prettier": "2.5.1",
"process": "^0.11.10",
"typescript": "4.5.5"
},
"scripts": {
"start-dev": "parcel --port 3000 --public-url http://localhost:3000 src/index.html",
"build": "rm -rf build && parcel build src/index.html --no-source-maps --dist-dir=build --public-url https://snowmiku.net && cp src/robots.txt build/robots.txt",
"lint": "tsc --noEmit && eslint src/**/*.(tsx|ts)"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all",
"not ie > 0",
"not ie_mob > 0"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "yarn@3.2.0"
}