-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.63 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-skeleton",
"version": "3.0.3",
"description": "YLab React Skeleton",
"main": "index.tsx",
"scripts": {
"start": "vite serve",
"build": "vite build",
"preview": "npm run build && vite preview",
"start:server": "cross-env NODE_ENV=development ts-node ./server/index.ts",
"build:server": "npm run build && vite build --ssr root.tsx",
"preview:server": "npm run build:server && ts-node ./server/index.ts",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest",
"test:eslint": "./node_modules/.bin/eslint ./",
"lint": "eslint ./src"
},
"type": "module",
"author": "Vladimir Shestakov [email protected]",
"license": "ISC",
"dependencies": {
"@bem-react/classname": "^1.6.0",
"accept-language-parser": "^1.5.0",
"ajv": "^8.12.0",
"axios": "^1.4.0",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"dotenv-parse-variables": "^2.0.0",
"express": "^4.18.2",
"history": "^5.3.0",
"html-dom-parser": "^4.0.0",
"js-base64": "^3.7.5",
"js-cookie": "^3.0.5",
"lodash.debounce": "^4.0.8",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"merge-change": "^1.8.1",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-router": "^6.14.2",
"react-router-dom": "^6.14.2",
"replacestream": "^4.0.3",
"shallowequal": "^1.1.0",
"simplex-noise": "^4.0.1",
"type-fest": "^4.1.0",
"uniqid": "^5.4.0"
},
"devDependencies": {
"@types/accept-language-parser": "^1.5.3",
"@types/cookie-parser": "^1.4.3",
"@types/dotenv-parse-variables": "^2.0.1",
"@types/express": "^4.17.17",
"@types/http-proxy": "^1.17.11",
"@types/jest": "^29.5.3",
"@types/js-cookie": "^3.0.3",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.get": "^4.4.7",
"@types/node": "^20.4.5",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
"@types/react-helmet": "^6.1.6",
"@types/react-router": "^5.1.20",
"@types/replacestream": "^4.0.1",
"@types/uniqid": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"http-proxy": "^1.18.1",
"jest": "^29.6.2",
"prettier": "3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vite": "^4.4.7",
"vite-plugin-checker": "^0.6.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-html": "^3.2.0"
}
}