-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.93 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "niidl",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"prisma": {
"seed": "node --require esbuild-register prisma/seed.ts"
},
"scripts": {
"test": "mocha --exit && npm run lint",
"start": "npx tsc && node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"lint": "eslint --fix --ext .js . .ts",
"build-production": "npm install --production",
"build-development": "npx tsc",
"build-db": "npx prisma migrate dev && npx prisma generate && npx prisma db seed"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/niidl/niidl-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/niidl/niidl-server/issues"
},
"homepage": "https://github.com/niidl/niidl-server#readme",
"dependencies": {
"@aws-sdk/lib-storage": "^3.304.0",
"@prisma/client": "^4.11.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/csurf": "^1.11.2",
"@types/express": "^4.17.17",
"@types/node": "^18.15.3",
"aws-sdk": "^2.837.0",
"axios": "^1.3.4",
"concurrently": "^7.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"digitalocean-spaces": "^1.0.0",
"dotenv": "^16.0.3",
"esbuild-register": "^3.4.2",
"express": "^4.18.2",
"formidable-serverless": "^1.1.1",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"pg": "^8.10.0",
"prisma": "^4.11.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-problems": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3"
}
}