-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 955 Bytes
/
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
{
"devDependencies": {
"@types/babel__core": "^7.1.19",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.22",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"jest": "^28.1.3",
"supertest": "^6.2.4",
"ts-jest": "^28.0.8",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"scripts": {
"start": "node build/index.js",
"build": "tsc",
"dev": "cross-env NODE_ENV=development ts-node-dev index.ts",
"lint": "eslint --ext .ts .",
"test": "cross-env NODE_ENV=test jest --verbose --runInBand --forceExit",
"start:test": "cross-env NODE_ENV=test node index.js"
},
"dependencies": {
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.2"
}
}