-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.02 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
{
"name": "metamovie-backend",
"version": "0.0.0",
"private": true,
"scripts": {
"prisma-generate": "prisma generate",
"serve": "nodemon ./src/bin/www.ts",
"build": "npm run build:css && tsc",
"build:css": "postcss static/stylesheets/tailwind.css -o static/stylesheets/style.css",
"test": "jest",
"gen-json-schema": "npx ts-node .\\scripts\\buildJsonSchema.ts",
"db-seed": "npx prisma db seed --preview-feature",
"ts-node": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\"",
"copy-files": "npx copyfiles ./src/json-schema/* ./src/views/* ./build && npx copyfiles ./static/stylesheets/* ./build",
"postinstall": "npm run build && npm run copy-files",
"start": "node build/src/bin/www.js"
},
"dependencies": {
"@prisma/client": "^2.23.0",
"@types/nodemailer": "^6.4.4",
"@types/passport-local": "^1.0.33",
"ajv": "^6.12.6",
"bcrypt": "^5.0.1",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"debug": "~2.6.9",
"ejs": "^3.1.6",
"express": "~4.16.1",
"express-json-validator-middleware": "^2.1.1",
"morgan": "~1.9.1",
"nodemailer": "^6.7.0",
"nodemon": "^2.0.6",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/autoprefixer": "^10.2.0",
"@types/bcrypt": "^5.0.0",
"@types/cookie-session": "^2.0.42",
"@types/cors": "^2.8.9",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.19",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.19",
"@types/passport": "^1.0.6",
"@types/superagent": "^4.1.10",
"@types/supertest": "^2.0.10",
"jest": "^26.6.3",
"postcss-cli": "^9.0.1",
"prettier": "^2.2.1",
"prisma": "^2.23.0",
"superagent": "^6.1.0",
"supertest": "^6.0.1",
"tailwindcss": "^2.2.17",
"typescript-json-schema": "^0.48.0"
}
}