-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "nodejs-mvp-starter",
"version": "1.0.0",
"description": "Simple backend starter project for MVP",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test ts-mocha --paths -p tsconfig.json src/**/*.test.ts",
"dev": "NODE_ENV=dev ts-node-dev --respawn --transpile-only --clear src/index.ts",
"build": "tsc --project tsconfig.production.json",
"start": "NODE_ENV=production node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/megaxayda/nodejs-mvp-starter.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/megaxayda/nodejs-mvp-starter/issues"
},
"homepage": "https://github.com/megaxayda/nodejs-mvp-starter#readme",
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/bcrypt": "^3.0.1",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.2",
"@types/morgan": "^1.9.2",
"@types/passport": "^1.0.6",
"@types/passport-jwt": "^3.0.5",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"kill-port": "^1.6.1",
"lodash": "^4.17.21",
"mongoose": "^5.12.3",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"ts-mocha": "^8.0.0"
}
}