-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 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
{
"name": "shorten-node",
"author": "Andrew Kish <akish@kishcom.com>",
"private": true,
"scripts": {
"start": "grunt; cross-env NODE_ENV=dev nodemon app.js | bunyan",
"start.live": "grunt; cross-env NODE_ENV=live node app.js | bunyan",
"test": "grunt; cross-env NODE_ENV=test mocha tests.js -b -s 200 -t 10000 --exit | bunyan",
"postinstall": "grunt live"
},
"engines": {
"node": "10.x.x"
},
"version": "1.13.2",
"dependencies": {
"accepts": "1.3.x",
"body-parser": "1.19.x",
"clipboard": "^2.0.6",
"cookie-parser": "1.4.x",
"escape-html": "1.0.x",
"express": "4.17.x",
"express-extras": "0.3.x",
"express-session": "1.17.x",
"less": "3.11.x",
"less-middleware": "3.1.x",
"mongoose": "5.11.x",
"multer": "1.4.x",
"nunjucks": "^3.2.1",
"sanitize-caja": "0.1.x",
"validator": "13.0.x"
},
"devDependencies": {
"async": "latest",
"bunyan": "^1.8.x",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.x.x",
"eslint-plugin-html": "^6.x.x",
"grunt": "~1.1.x",
"grunt-cli": "^1.3.2",
"grunt-contrib-concat": "~1.0.x",
"grunt-contrib-less": "~2.0.x",
"grunt-contrib-uglify": "~4.0.x",
"grunt-contrib-watch": "~1.1.x",
"grunt-git-describe": "~2.4.x",
"mocha": "^10.2.0",
"nodemon": "^2.0.4",
"request": "latest",
"supertest": "^4.0.2"
}
}