-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.06 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.06 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "node-starter",
"version": "2.0.0",
"scripts": {
"local": "yarn start:local",
"dev": "yarn start:dev",
"test": "yarn start:test",
"start:local": "yarn build && yarn env:local nodemon",
"start:dev": "yarn build && yarn env:dev ts-node-dev ./dist/src/index.js",
"start:test": "yarn build && yarn lint && yarn env:test nyc mocha --timeout 35000 ./dist/src/application/**/test/*.spec.js --exit",
"env:local": "cross-env NODE_ENV=local",
"env:dev": "cross-env NODE_ENV=development",
"env:test": "cross-env NODE_ENV=test",
"build": "yarn build:tsoa && tsc && yarn copy:env",
"build:tsoa": "tsoa spec-and-routes",
"lint": "yarn build && tslint -c \"./tslint.json\" -p \"./tsconfig.json\"",
"clean": "rm -rf ./dist && rm -rf ./build && mkdir build",
"copy:env": "cp -R src/infrastructure/config/env ./dist/src/infrastructure/config/env"
},
"main": "index.js",
"repository": "https://github.com/mravinale/node-starter-v2.git",
"author": "Mariano Ravinale <mravinale@gmail.com>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.5.0",
"tsoa": "^4.1.0",
"tsyringe": "^4.7.0",
"typeorm": "^0.3.7",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.1",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.4",
"@types/sinon": "^10.0.12",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"chai": "^4.3.6",
"concurrently": "^7.2.2",
"faker": "^6.6.6",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"nyc": "^15.1.0",
"randomstring": "^1.2.2",
"sinon": "^14.0.0",
"supertest": "^6.2.4",
"ts-mockito": "^2.6.1",
"ts-node": "^10.8.2",
"ts-node-dev": "^2.0.0",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
}
}