-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.54 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
{
"name": "paas",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start:dev": "nodemon ./bin/www",
"migrate:reset": "sequelize db:migrate:undo:all && sequelize db:migrate",
"test": "NODE_ENV=test jest --detectOpenHandles",
"pretest": "NODE_ENV=test yarn run migrate:reset"
},
"dependencies": {
"bcrypt": "^3.0.7",
"bulma": "^0.8.0",
"connect-redis": "^4.0.3",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"docker-machine": "^3.0.1",
"dockerode": "^3.0.2",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.17.0",
"express-ws": "^4.0.0",
"hbs": "~4.0.4",
"http-errors": "~1.6.3",
"json-web-token": "^3.2.0",
"momentjs": "^2.0.0",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"node-sass-middleware": "0.11.0",
"nodejs-tail": "^1.1.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"redis": "^2.8.0",
"rimraf": "^3.0.0",
"sequelize": "^5.21.2",
"sequelize-cli": "^5.5.1",
"slugify": "^1.3.6",
"tail": "2.0.3",
"tail-file": "1.4.13",
"tar-fs": "^2.0.0",
"uuid": "^3.3.3",
"ws": "^7.2.0",
"xterm": "^4.2.0-vscode1"
},
"devDependencies": {
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules"
]
}
}