-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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": "resume",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm run server:dev",
"prod": "npm run lint && npm run build && npm run server:prod",
"build": "vite build",
"server": "node --loader ts-node/esm ./server/index.ts",
"server:dev": "npm run server",
"server:prod": "cross-env NODE_ENV=production npm run server",
"lint": "eslint . --max-warnings 0"
},
"dependencies": {
"@netlify/functions": "^2.1.0",
"lodash.capitalize": "^4.2.1",
"lodash.words": "^4.2.0",
"node-fetch": "^3.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/compression": "^1.7.3",
"@types/core-js": "^2.5.8",
"@types/express": "^4.17.18",
"@types/lodash.capitalize": "^4.2.7",
"@types/lodash.words": "^4.2.7",
"@types/node": "^20.8.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"express": "^4.18.2",
"sirv": "^2.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vike": "^0.4.142",
"vite": "^4.4.5"
}
}