-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "visu-visit-server",
"version": "0.1.0",
"description": "",
"main": "server.ts",
"scripts": {
"dev": "nodemon --exec ts-node src/server.ts",
"start": "tsc && node dist/server.js",
"build": "tsc",
"test": "mocha test/**.*.ts -r ts-node/register"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/better-sqlite3": "^7.4.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.1",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^16.10.2",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"better-sqlite3": "^7.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-errors": "^1.8.0",
"mongoose": "^6.0.8",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"nanoid": "^3.1.28",
"ts-node": "^10.3.0",
"typescript": "^4.4.3",
"validator": "^13.6.0"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/supertest": "^2.0.11",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.1",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"supertest": "^6.1.6"
}
}