-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "tsc && nodemon dist/index.js",
"test": "NODE_ENV=test env-cmd jest --watch --detectOpenHandles",
"start": "tsc && node dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.5",
"typescript": "^3.8.3",
"@types/node": "^13.9.1"
},
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/preset-typescript": "^7.8.3",
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.3",
"@types/hapi__joi": "^16.0.12",
"@types/jest": "^25.1.4",
"@types/jsonwebtoken": "^8.3.8",
"@types/mongoose": "^5.7.6",
"@types/node": "^13.9.1",
"@types/supertest": "^2.0.8",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^25.1.0",
"env-cmd": "^10.1.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}