-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (63 loc) · 1.86 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": "ddyzd_erp_v2_main_api",
"version": "1.0.0",
"description": "대동여지도 ERP(Enterprize Resource Planning) 클라이언트 API",
"main": "index.js",
"scripts": {
"start": "nodemon --exec ts-node src/app.ts",
"start:prod": "cross-env NODE_ENV=production npx pm2 start dist/app.js --name ddyzd_erp_main",
"stop": "npx pm2 stop ddyzd_erp_main & npx pm2 delete ddyzd_erp_main",
"test": "tsc & cross-env NODE_ENV=test npx mocha dist/test/**/*.spec.js",
"coverage": "nyc --reporter=text npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/semicolonDSM/DDYZD_ERP_V2_MAIN_API.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/semicolonDSM/DDYZD_ERP_V2_MAIN_API/issues"
},
"homepage": "https://github.com/semicolonDSM/DDYZD_ERP_V2_MAIN_API#readme",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^9.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"typescript": "^4.2.4",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.17",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/hpp": "^0.2.1",
"@types/jsonwebtoken": "^8.5.1",
"@types/mocha": "^8.2.2",
"@types/morgan": "^1.9.2",
"@types/node": "^15.0.2",
"@types/sinon": "^10.0.0",
"@types/supertest": "^2.0.11",
"@types/winston": "^2.4.4",
"artillery": "^1.7.2",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"pm2": "^4.5.6",
"sinon": "^10.0.0",
"supertest": "^6.1.3",
"ts-node": "^9.1.1"
}
}