-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.02 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.02 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
{
"name": "node-be-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "npm run serve",
"dev": "nodemon",
"build": "npm run build-ts",
"windows:build": "npm run windows:build-ts",
"serve": "node dist/src/",
"build-ts": "rm -rf dist/ && tsc",
"windows:build-ts": "rd /s /q \"dist\" && tsc",
"migrate": "npm run build && sequelize db:migrate",
"seed": "npm run build && sequelize db:seed:all",
"windows:migrate": "npm run windows:build && sequelize db:migrate",
"windows:seed": "npm run windows:build && sequelize db:seed:all",
"create:migration": "sequelize migration:generate --name",
"create:seed": "sequelize seed:generate --name",
"undo:migrations": "yarn build && sequelize db:migrate:undo:all",
"windows:undo:migrations": "yarn windows:build && sequelize db:migrate:undo:all",
"undo:seed": "yarn build && sequelize db:seed:undo:all",
"windows:undo:seed": "yarn windows:build && sequelize db:seed:undo:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pajicf/node-be-template/"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.0",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"ps-tree": "^1.2.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.13",
"sequelize-typescript": "^1.1.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/jest": "^26.0.10",
"@types/node": "^14.0.13",
"@types/validator": "^13.0.0",
"jest": "^26.4.1",
"nodemon": "^2.0.4",
"sequelize-cli": "^6.2.0",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}