generated from code-yeongyu/ts-express-mongoose-app-based-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 2.16 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
{
"name": "ts-expres-mongoose-boilerplate",
"version": "1.0.0",
"main": "src/index.ts",
"repository": "https://github.com/code-yeongyu/ts-express-mongoose-boilerplate",
"author": "YeonGyu Kim <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_PATH=src/ nodemon --exec ts-node src/index.ts",
"test": "export NODE_ENV=test;cross-env NODE_PATH=src/ ts-mocha -p ./tsconfig.json ./src/app/*/tests.ts",
"pr-test": "export NODE_ENV=test;export TRAVIS_PULL=true;cross-env NODE_PATH=src/ ts-mocha -p ./tsconfig.json ./src/app/*/tests.ts",
"dockerize-test": "export DB_URI=mongodb://mongodb/test; NODE_PATH=src/ ts-mocha -p ./tsconfig.json ./src/app/*/tests.ts",
"build": "tsc -p .",
"start": "cross-env NODE_PATH=dist/ node dist/index.js",
"production-start": "cross-env NODE_PATH=dist/ pm2 start -i max dist/index.js",
"deploy": "ts-node script/deploy.ts"
},
"dependencies": {
"aws-sdk": "^2.906.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"fs": "^0.0.1-security",
"mongoose": "^5.10.11",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-ssh": "^11.1.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.8",
"@types/express-validator": "^3.0.0",
"@types/mocha": "^8.0.4",
"@types/mongoose": "^5.7.36",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.4",
"@types/passport": "^1.0.4",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/sinon": "^9.0.8",
"@types/supertest": "^2.0.10",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^4.1.2",
"axios": "^0.21.1",
"cross-env": "^7.0.2",
"mocha": "^8.2.1",
"node-mocks-http": "^1.9.0",
"nodemon": "^2.0.6",
"sinon": "^9.2.1",
"supertest": "^6.0.1",
"ts-mocha": "^8.0.0",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.5"
}
}