-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 993 Bytes
/
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
{
"private": true,
"license": "MIT",
"main": "./server.mjs",
"repository": "github:ablause/portfolio",
"ts-standard": {
"ignore": [
"**/dist/**",
"node_modules/**"
]
},
"scripts": {
"start": "concurrently --names \"server,client\" \"yarn:serve\" \"vite build --watch --mode development\"",
"serve": "node -r dotenv/config server.mjs",
"build": "vite build"
},
"dependencies": {
"classnames": "^2.3.1",
"compression": "^1.7.4",
"express": "^4.17.1",
"history": "^5.0.0",
"nodemailer": "^6.6.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/history": "^4.7.9",
"@types/node": "^16.4.1",
"@types/nodemailer": "^6.4.4",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@vitejs/plugin-react-refresh": "^1.3.6",
"concurrently": "^6.2.0",
"dotenv": "^10.0.0",
"ts-standard": "^10.0.0",
"typescript": "^4.2.4",
"vite": "^2.4.4"
}
}