-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.27 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.27 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "node-ts",
"version": "1.0.0",
"main": "index.ts",
"repository": "https://github.com/web-raiders/node-ts.git",
"author": "web raiders dev team",
"license": "MIT",
"typings": "index.d.ts",
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"test": "cross-env NODE_ENV=test nyc --reporter=text --reporter=html mocha -r ts-node/register src/test/*.ts --timeout 10000 -c --require @babel/register --exit",
"pretest": "cross-env NODE_ENV=test npm run dev:migrate",
"build": "tsc && babel src --out-dir dist --copy-files --extensions '.ts,.js'",
"build-ts": "tsc",
"migrate": "sequelize db:migrate ",
"migrate:reset": "sequelize db:migrate:undo:all",
"seed": "sequelize db:seed:all",
"migrate:seed": "npm run migrate && npm run seed",
"watch-ts": "tsc -w",
"start": "node dist/index.js",
"prestart": "npm run migrate:seed",
"dev": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "^7.13.8",
"@sendgrid/mail": "^7.4.2",
"@types/geojson": "^7946.0.7",
"agora-access-token": "^2.0.4",
"bcryptjs": "^2.4.3",
"chai": "4.3.0",
"class-validator": "^0.13.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"dotenv": "^8..0",
"ejs": "^2.6.1",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-rate-limit": "^6.6.0",
"geojson": "^0.5.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mocha": "8.3.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"passport": "^0.4.1",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"pusher": "^5.0.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.8.5",
"sequelize-cli": "^5.4.0",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"y18n": "4.0.0",
"yargs": "13.3.0",
"yargs-parser": "16.1.0"
},
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/node": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "7.12.13",
"@babel/plugin-transform-runtime": "^7.13.8",
"@babel/preset-env": "^7.12.17",
"@babel/preset-typescript": "^7.12.17",
"@babel/register": "^7.12.13",
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.2.15",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/hapi__joi": "15.0.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.2.1",
"@types/node": "^12.7.8",
"@types/pg": "^7.14.10",
"@types/sequelize": "^4.28.14",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^4.0.1",
"chai-http": "^4.3.0",
"coveralls": "^3.1.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"faker": "^5.4.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.5"
}
}