-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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
{
"name": "postgis-express",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"postinstall": "prisma generate",
"dev": "nodemon",
"watch:css": "npx tailwindcss -i ./src/index.css -o ./public/assets/css/index.css --watch",
"build": "rm -rf dist && tsc --project tsconfig.json && npm run build:css && copyfiles -f src/views/*.ejs dist/views",
"build:css": "npx tailwindcss -i ./src/index.css -o ./public/assets/css/index.css",
"start": "node dist/index.js",
"test": "jest"
},
"nodemonConfig": {
"watch": [
"src"
],
"exec": "ts-node --project tsconfig.json src/index.ts",
"ext": "js ts"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "4.4.0",
"@types/node": "14.17.32",
"axios": "^0.21.4",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"dotenv": "^10.0.0",
"ejs": "^3.1.9",
"express": "4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"nodemailer": "^6.7.0",
"qs": "^6.10.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "1.19.1",
"@types/cookie-parser": "^1.4.2",
"@types/express": "4.17.13",
"@types/jest": "27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/morgan": "^1.9.3",
"@types/node": "14.17.32",
"@types/supertest": "2.0.11",
"copyfiles": "^2.4.1",
"jest": "27.3.1",
"jest-environment-node": "27.3.1",
"nodemon": "^2.0.14",
"prisma": "4.4.0",
"randomstring": "1.2.1",
"supertest": "6.1.6",
"tailwindcss": "^3.4.13",
"ts-jest": "27.0.7",
"ts-node": "10.4.0",
"typescript": "4.4.4"
}
}