-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 1.04 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
{
"name": "IMMFLY",
"version": "1.0.0",
"main": "server.js",
"author": "Immfly",
"license": "MIT",
"scripts": {
"dev": "export PORT=5000 && export NODE_ENV=development && nodemon",
"build": "export PORT=8080 && export NODE_ENV=production && rimraf ./build && tsc",
"start": "export PORT=8080 && export NODE_ENV=production && ts-node ./build/server.js",
"test": "jest --collect-coverage --testTimeout=30000"
},
"dependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/supertest": "^2.0.11",
"axios": "^0.21.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"envalid": "^7.2.1",
"express": "^4.17.1",
"express-winston": "^4.2.0",
"fs": "^0.0.1-security",
"jest": "^27.4.7",
"supertest": "^6.2.1",
"ts-jest": "^27.1.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/node": "^16.10.2",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}