-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.43 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.43 KB
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
{
"name": "aat-backend",
"version": "1.0.0",
"description": "aat-backend",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"formatCheck": "prettier --check .",
"formatCode": "prettier --write ."
},
"engines": {
"node": "16.13.0",
"npm": "8.1.0"
},
"dependencies": {
"bluebird": "3.7.2",
"cookie-parser": "1.4.5",
"cors": "^2.8.5",
"dotenv": "10.0.0",
"express": "4.17.1",
"mongoose": "5.13.5",
"mongoose-sequence": "5.3.1",
"morgan": "1.10.0",
"pino": "6.13.0"
},
"devDependencies": {
"@types/bluebird": "3.5.36",
"@types/chai": "4.2.21",
"@types/cors": "^2.8.12",
"@types/express": "4.17.7",
"@types/mocha": "9.0.0",
"@types/mongoose": "5.11.97",
"@types/morgan": "1.9.3",
"@types/pino": "6.3.11",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.28.5",
"chai": "4.3.4",
"concurrently": "^7.3.0",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"husky": "6.0.0",
"lint-staged": "11.1.1",
"mocha": "8.4.0",
"mocha-junit-reporter": "2.0.0",
"nodemon": "2.0.12",
"pino-pretty": "5.1.2",
"prettier": "2.3.2",
"supertest": "6.1.4",
"ts-node": "9.1.1",
"typescript": "4.3.5"
}
}