-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 832 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 832 Bytes
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
{
"scripts": {
"watch": "NODE_ENV=development nodemon src/index.ts",
"test": "NODE_ENV=test jest --config jest.config.ts",
"start": "NODE_ENV=development ts-node src/index.ts"
},
"dependencies": {
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"mongoose": "^6.2.8",
"typescript": "^4.6.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.22",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"supertest": "^6.2.2",
"ts-node": "^10.7.0"
}
}