-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 880 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 880 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
32
33
34
35
36
37
{
"name": "aiv4u",
"version": "1.0.0",
"description": "",
"main": "./backend/server.mjs",
"type": "module",
"target": "esnext",
"scripts": {
"start": "node ./backend/server.mjs",
"test": "vitest"
},
"keywords": [],
"author": "soeguet",
"private": true,
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"pdf-parse-fork": "^1.2.0",
"process": "^0.11.10",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/supertest": "^6.0.2",
"eslint": "^8.56.0",
"mock-fs": "^5.2.0",
"supertest": "^6.3.3",
"vitest": "^1.1.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": false
}
}