-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.82 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
{
"name": "MilleniumBase",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "babel src/index.ts -d dist",
"prestart": "npm run build",
"start": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1",
"check-types": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/bluebird": "^3.5.29",
"@types/express-session": "^1.15.16",
"@types/validator": "^12.0.1",
"body-parser": "^1.19.0",
"class-validator": "^0.12.2",
"csurf": "^1.11.0",
"date-and-time": "^0.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"express-validator": "^6.3.0",
"file-system": "^2.2.2",
"ip6addr": "^0.2.3",
"pg": "^8.3.0",
"pg-hstore": "^2.3.3",
"pug": "^2.0.4",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.2",
"sequelize-cli": "^5.5.1",
"sequelize-cli-typescript": "^3.2.0-c",
"sequelize-typescript": "^1.0.0",
"validatorjs": "^3.18.1"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@babel/register": "^7.7.4",
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.7",
"@types/node": "^12.12.14",
"nodemon": "^2.0.1",
"ts-node": "^8.10.2",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
}
}