-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.83 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
{
"name": "registerapp",
"version": "0.0.1",
"description": "A web-based retail register",
"repository": {
"type": "git",
"url": "git@192.168.10.105:ModernMobileSuite/ModernMobileSuite.git"
},
"engines": {
"node": "^12.13.1",
"npm": "^6.12.1"
},
"keywords": [
"express",
"ejs",
"typescript",
"sequelize"
],
"author": "rxp01@uark.edu",
"license": "MIT",
"scripts": {
"rebuild": "npm run clean && npm run build",
"build": "npm run build-ts && npm run tslint",
"start": "node dist/server.js",
"clean": "rimraf dist",
"build-ts": "tsc",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest --forceExit --coverage --verbose",
"postinstall": "npm run rebuild"
},
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.7.1",
"helmet": "^3.21.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.0",
"lusca": "^1.6.1",
"ejs": "^3.0.1",
"pg": "^7.14.0",
"sequelize": "^5.21.2",
"moment": "^2.24.0"
},
"devDependencies": {
"@types/bcrypt-nodejs": "^0.0.30",
"@types/bluebird": "^3.5.29",
"@types/helmet": "^0.0.45",
"@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/express-flash": "0.0.1",
"@types/express-session": "^1.15.16",
"@types/jest": "^24.0.23",
"@types/lusca": "^1.6.1",
"@types/node": "^12.12.14",
"@types/supertest": "^2.0.8",
"@types/sequelize": "^4.28.8",
"ejs-lint": "^0.3.0",
"chai": "^4.2.0",
"jest": "^24.9.0",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
}
}