-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
70 lines (70 loc) · 1.99 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
63
64
65
66
67
68
69
70
{
"name": "openstad-api",
"version": "1.0.0",
"description": "OpenStad API server",
"main": "server.js",
"scripts": {
"start": "node migrate.js && node server.js",
"dev": "nodemon server.js ",
"lint": "node ./scripts/lint",
"lint:bare": "npx eslint",
"prettier": "node ./scripts/prettier",
"prettier:bare": "npx prettier",
"test": "npm run test:unit",
"test:unit": "jest --no-cache --config jest.config.js",
"test:unit:watch": "jest --watch --no-cache",
"test:e2e": "jest --no-cache --config jest-e2e.config.js --forceExit",
"test:e2e:debug": "jest --no-cache --config jest-e2e.config.js --verbose --forceExit"
},
"dependencies": {
"@kubernetes/client-node": "^0.18.1",
"aws-sdk": "^2.1373.0",
"bcrypt": "^5.0.1",
"co": "^4.6.0",
"compression": "^1.7.4",
"config": "^3.3.7",
"cron": "^1.8.2",
"dotenv": "^8.6.0",
"express": "^4.17.3",
"express-promise-router": "^3.0.3",
"fuzzysort": "^1.2.1",
"html-to-text": "^6.0.0",
"http-errors": "^1.8.1",
"ip": "^1.1.5",
"isomorphic-fetch": "^3.0.0",
"json-logic-js": "^2.0.2",
"jsonwebtoken": "^9.0.0",
"mariadb": "^2.5.6",
"marked": "^4.0.14",
"merge": "^2.1.1",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"mysql2": "^1.7.0",
"mysqldump": "^3.2.0",
"node-fetch": "^2.6.7",
"nodemailer": "^6.7.3",
"nodemon": "^2.0.15",
"nunjucks": "^3.2.3",
"pmx": "^1.6.7",
"sanitize-html": "^2.7.0",
"sequelize": "^6.19.0",
"umzug": "^2.3.0",
"useragent": "^2.3.0",
"ws": "^7.5.7"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sonarjs": "^0.10.0",
"jest": "^27.5.1",
"npm-commands": "^1.1.0",
"prettier": "^2.6.2",
"sequelize-mock": "^0.10.2",
"supertest": "^4.0.2"
},
"author": "",
"license": "ISC"
}