generated from lmachens/vite-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.98 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
{
"name": "vite-boilerplate",
"version": "0.0.0",
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"client:dev": "vite",
"server:dev": "ts-node-dev --project tsconfig.server.json src/server",
"server:build": "tsc --project tsconfig.server.json",
"client:build": "vite build",
"build": "npm run server:build && npm run client:build",
"serve": "vite preview",
"prepare": "husky install",
"test": "tsc && prettier --check . && eslint . && stylelint \"**/*.css\"",
"start": "node dist/server.js",
"sass": "sass src/app/styles/main.sass src/app/public/output.css"
},
"prisma": {
"seed": "ts-node --transpile-only seed.ts"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@types/express": "^4.17.13",
"@types/node": "^16.11.4",
"@types/react": "^17.0.32",
"@types/react-dom": "^17.0.10",
"@types/react-router-dom": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"@vitejs/plugin-react": "^2.2.0",
"babel-loader": "^8.2.3",
"concurrently": "^6.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"http-proxy-middleware": "^2.0.1",
"husky": "^7.0.4",
"lint-staged": "^11.2.4",
"prettier": "2.4.1",
"prisma": "^4.8.1",
"stylelint": "^14.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^23.0.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4",
"vite": "^3.2.3",
"vite-plugin-environment": "^1.1.3"
},
"dependencies": {
"@prisma/client": "^4.8.1",
"@types/cookie-parser": "^1.4.3",
"await-to-js": "^3.0.0",
"axios": "^1.2.2",
"cookie-parser": "^1.4.6",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-errors": "^2.0.0",
"react": "^17.0.2",
"react-async": "^10.0.1",
"react-dom": "^17.0.2",
"react-icons": "^4.7.1",
"react-router": "^6.6.2",
"react-router-dom": "^6.6.2",
"sass": "^1.57.1"
}
}