-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.28 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
76
{
"name": "linz",
"version": "1.0.0-19.0.1",
"description": "Node.js web application framework",
"license": "MIT",
"main": "linz.js",
"scripts": {
"build": "./devops/build.sh",
"build-dev": "./devops/build-dev.sh",
"start": "./node_modules/.bin/npm-run-all --sequential build-dev dev-start",
"dev-start": "./devops/dev.sh",
"jest": "jest --detectOpenHandles --forceExit",
"report-coverage": "./devops/report-coverage.sh",
"test": "./node_modules/.bin/npm-run-all --sequential build test-start",
"test-app": "./node_modules/.bin/npm-run-all -s jest report-coverage",
"test-start": "./devops/test.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/linzjs/linz.git"
},
"files": [
"lib",
"middleware",
"params",
"public",
"routes",
"views",
"linz.js"
],
"author": "Scott Mebberson",
"readmeFilename": "README.md",
"dependencies": {
"async": "3.2.5",
"body-parser": "1.0.x",
"bunyan": "1.8.10",
"camelcase": "2.0.1",
"chalk": "^2.4.1",
"clone": "1.0.2",
"connect-flash": "^0.1.1",
"cookie-parser": "1.4.4",
"csurf": "^1.9.0",
"csv-stringify": "4.3.1",
"debug": "0.7.4",
"dedupe": "2.1.0",
"deep-diff": "0.2.0",
"diff": "1.0.8",
"escape-string-regexp": "1.0.5",
"express": "^4.16.4",
"express-session": "1.15.6",
"formist": "0.3.0",
"handlebars": "4.0.11",
"inflection": "1.3.8",
"less-middleware": "1.0.3",
"lodash": "4.17.21",
"moment": "2.22.2",
"mongoose": "8.1.2",
"mongoose-version": "linzjs/mongoose-version#ede58522e5e2c5921635ff1628a852c0012c2a69",
"passport": "0.2.x",
"passport-local": "1.0.0",
"printf": "0.2.x",
"pug": "3.0.2",
"sentence-case": "2.1.1",
"stream-transform": "1.0.8",
"stylus": "~0.40.3",
"x-xss-protection": "1.1.0"
},
"devDependencies": {
"husky": "3.0.8",
"jest": "29.7.0",
"npm-run-all": "4.1.3",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
"supertest": "3.1.0"
}
}