-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "ecms-api",
"version": "1.0.0",
"description": "API for ecms",
"main": "dist/index.ts",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon -e ts --exec 'ts-node src/index.ts'",
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --fix --ext .ts",
"test": "jest",
"test:coverage": "jest --coverage"
},
"author": "C Elston",
"license": "ISC",
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/gm": "^1.18.12",
"@types/jest": "^29.2.0",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^18.11.3",
"@types/sqlite3": "^3.1.11",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.26.0",
"jest": "^29.2.1",
"nodemon": "^3.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.5.4",
"argon2": "^0.30.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"exifreader": "^4.9.1",
"express": "^4.18.2",
"gm": "^1.25.0",
"image-size": "^1.0.2",
"jsonwebtoken": "^9.0.0",
"sqlite3": "^5.1.7",
"winston": "^3.8.2",
"yaml": "^2.1.3"
}
}