forked from AndrewCash/RegisterWeb-NodeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.38 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.38 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
{
"name": "registerweb",
"version": "0.0.1",
"description": "A web-based retail register",
"repository": {
"type": "git",
"url": "git@192.168.10.105:ModernMobileSuite/ModernMobileSuite.git"
},
"engines": {
"node": "^10.13.0",
"npm": "^6.4.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": {
"async": "^2.6.1",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.3",
"helmet": "^3.15.0",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"dotenv": "^6.2.0",
"errorhandler": "^1.5.0",
"express": "^4.16.4",
"express-flash": "0.0.2",
"express-session": "^1.15.6",
"express-validator": "^5.3.0",
"lodash": "^4.17.11",
"lusca": "^1.6.1",
"ejs": "^2.6.1",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"pg": "^7.7.1",
"sequelize": "^4.41.2",
"moment": "^2.22.2"
},
"devDependencies": {
"@types/async": "^2.0.50",
"@types/bcrypt-nodejs": "^0.0.30",
"@types/bluebird": "^3.5.24",
"@types/helmet": "^0.0.42",
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/dotenv": "^6.1.0",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.16.0",
"@types/express-flash": "0.0.0",
"@types/express-session": "^1.15.11",
"@types/jest": "^23.3.10",
"@types/jquery": "^3.3.22",
"@types/lodash": "^4.14.118",
"@types/lusca": "^1.5.0",
"@types/morgan": "^1.7.35",
"@types/node": "^10.12.12",
"@types/passport": "^0.4.7",
"@types/passport-local": "^1.0.33",
"@types/request": "^2.48.1",
"@types/shelljs": "^0.8.1",
"@types/supertest": "^2.0.7",
"@types/sequelize": "^4.27.32",
"chai": "^4.2.0",
"concurrently": "^4.1.0",
"jest": "^23.6.0",
"node-sass": "^4.10.0",
"nodemon": "^1.18.7",
"shelljs": "^0.8.3",
"supertest": "^3.3.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
}
}