-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.43 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.43 KB
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
71
72
73
74
75
76
{
"name": "cp_for_web",
"version": "1.0.0",
"description": "CP for Web",
"main": "dist/index.js",
"scripts": {
"seed:config": "ts-node ./node_modules/typeorm-seeding/dist/cli.js config",
"seed:run": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed",
"migrate:run": "ts-node ./node_modules/typeorm/cli.js migration:run",
"migrate:revert": "ts-node ./node_modules/typeorm/cli.js migration:revert",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"dev:start": "npm-run-all build start",
"migrations:create": "typeorm migration:generate -n Migration && git add src/migrations/* || true",
"migrations:run": "ts-node ./node_modules/typeorm/cli.js migration:run",
"heroku-postbuild": "npm install --production",
"postinstall": "npm run build && npm run copy-templates",
"copy-templates": "copyfiles -u 1 ./src/**/*.pug ./dist"
},
"author": "Flatlogic LLC",
"license": "ISC",
"engines": {
"node": ">=16.15.1",
"npm": ">=8.11.0"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/email-templates": "^6.0.0",
"@types/express": "^4.17.1",
"@types/joi": "^14.3.3",
"@types/jsonwebtoken": "^8.3.4",
"@types/lodash": "^4.14.144",
"@types/node": "^12.20.12",
"@types/node-cron": "^2.0.3",
"@types/nodemailer": "^6.2.2",
"@types/passport": "^1.0.1",
"@types/passport-jwt": "^3.0.2",
"axios": "^0.19.0",
"bcrypt": "^5.0.1",
"change-case": "^3.1.0",
"class-validator": "^0.10.0",
"copyfiles": "^2.1.1",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.1.0",
"email-templates": "^6.0.3",
"express": "^4.17.1",
"express-validator": "^6.2.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"node-cron": "^2.0.3",
"nodemailer": "^6.3.1",
"object-mapper": "^6.0.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.3.0",
"typeorm": "^0.2.25",
"typeorm-scheduler": "^1.2.0",
"typeorm-seeding": "^1.6.1",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/faker": "^5.1.2",
"@types/node": "^12.20.16",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"tslint": "^5.20.0"
}
}