-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.13 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
71
{
"name": "wh2o-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"init": "npm run migrate && npm ci && npm run serve",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:postman": "docgen build -i docs/wh2o-api.postman_collection.json -o docs/endpoints/README.md -m",
"dev": "nodemon",
"start": "node dist/index.js",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "rimraf ./dist && tsc",
"db:migrate": "npx sequelize-cli db:migrate",
"db:migrate:undo": "npx sequelize-cli db:migrate:undo",
"db:migrate:undo:all": "npx sequelize-cli db:migrate:undo:all",
"db:seed:all": "npx sequelize-cli db:seed:all",
"db:seed:undo": "npx sequelize-cli db:seed:undo",
"db:seed:undo:all": "npx sequelize-cli db:seed:undo:all"
},
"repository": {
"type": "git",
"url": "https://github.com/AmericanWhitewater/wh2o-api.git"
},
"engines": {
"node": ">=12.14.1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.771.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-form-data": "^2.0.14",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.4.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.5"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/faker": "^5.1.2",
"@types/morgan": "^1.9.1",
"@types/node": "^14.11.8",
"@types/sequelize": "^4.28.9",
"@vuepress/plugin-back-to-top": "^1.7.1",
"@vuepress/plugin-google-analytics": "^1.7.1",
"@vuepress/plugin-medium-zoom": "^1.7.1",
"@vuepress/plugin-pwa": "^1.7.1",
"faker": "^5.1.0",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"sequelize-cli": "^6.2.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-config-security": "^1.16.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.9.7",
"vuepress": "^1.7.1",
"vuepress-plugin-seo": "^0.1.4"
}
}