-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 KB
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
{
"name": "portfolio-server",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"start:prod": "set NODE_ENV=production&& node dist/server.js",
"start:dev": "set NODE_ENV=development&& nodemon -r tsconfig-paths/register server.ts",
"build": "npx ttsc -p tsconfig.json && cpx .env dist",
"test": "jest",
"test:dev": "jest --detectOpenHandles"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"cpx": "^1.5.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"node-fetch": "^3.2.6",
"nodemon": "^2.0.16",
"path": "^0.12.7",
"socket.io": "^4.6.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"engines": {
"node": "16.x"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/jest": "^28.1.5",
"@types/node": "^18.0.6",
"@zerollup/ts-transform-paths": "^1.7.18",
"jest": "^28.1.3",
"supertest": "^6.2.4",
"ts-jest": "^28.0.6",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.0.0",
"tscpaths": "^0.0.9",
"tslib": "^2.4.0",
"ttypescript": "^1.5.13",
"typescript-transform-paths": "^3.3.1"
}
}