-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.78 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
71
72
73
74
75
{
"name": "dp-node",
"version": "0.3.11",
"description": "Faster, cheaper, better web framework for Node.js",
"main": "index.js",
"scripts": {
"test": "npm run lint && mocha --bail --exit",
"testonly": "mocha --bail --exit",
"check": "npm-check",
"lint": "eslint ./",
"lintfix": "eslint ./ --fix",
"lintmon": "nodemon --exec 'npm run lint'"
},
"engineStrict": true,
"engines": {
"node": ">=7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/why2pac/dp-node.git"
},
"keywords": [
"MVC",
"Web",
"Framework",
"Express"
],
"author": "GONZO",
"license": "MIT",
"bugs": {
"url": "https://github.com/why2pac/dp-node/issues"
},
"homepage": "https://github.com/why2pac/dp-node#readme",
"standard": {
"env": [
"mocha"
],
"ignore": [
"/lib/static/**/*.js"
]
},
"dependencies": {
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"camelcase": "^6.2.0",
"compression": "^1.7.4",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"decamelize": "^5.0.0",
"express": "^4.17.1",
"express-naked-redirect": "^0.1.9",
"handlebars": "^4.7.7",
"handlebars-helper-repeat": "^2.0.0",
"handlebars-helpers": "^0.10.0",
"helmet": "^4.6.0",
"html-minifier": "^4.0.0",
"ini": "^2.0.0",
"is-callable": "^1.2.3",
"knex": "^0.95.6",
"morgan": "^1.10.0",
"promised-handlebars": "^2.0.1",
"redis": "^3.1.2"
},
"devDependencies": {
"@types/express-serve-static-core": "^4.17.22",
"command-line-test": "^1.0.10",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"mocha": "^9.0.2",
"mysql": "^2.18.1",
"should": "^13.2.3",
"supertest": "^6.1.3"
}
}