-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
executable file
·53 lines (53 loc) · 1.6 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
{
"name": "clean_architecture_typescript",
"version": "0.0.0",
"scripts": {
"build": "node build.js",
"lint": "tslint --project \"tsconfig.json\"",
"start": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node -r tsconfig-paths/register src/index.ts\"",
"start:dev": "nodemon --config nodemon.json",
"test": "nodemon --config nodemon.test.json",
"setup": "rm -f .setup && rm -rf ./dist && sh scripts/setup.sh"
},
"dependencies": {
"awilix": "^4.3.4",
"command-line-args": "^5.1.1",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"gn-api-sdk-node": "^3.0.4",
"helmet": "^3.22.0",
"http-status-codes": "^1.4.0",
"module-alias": "^2.2.2",
"mysql2": "^2.1.0",
"sequelize": "^6.35.1",
"underscore": "^1.13.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.6",
"@types/find": "^0.2.1",
"@types/glob": "^7.1.3",
"@types/helmet": "0.0.47",
"@types/jasmine": "^3.5.10",
"@types/jsonfile": "^6.0.0",
"@types/morgan": "^1.9.0",
"@types/node": "^20.0.0",
"@types/sequelize": "^4.28.9",
"@types/supertest": "^2.0.9",
"find": "^0.3.0",
"fs-extra": "^9.0.0",
"jasmine": "^3.5.0",
"jsonfile": "^6.0.1",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.2",
"typescript": "^4.0.3",
"underscore.string": "^3.3.5"
}
}