-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.66 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@bartonmalow/avian",
"version": "1.0.1",
"description": "Create Enterprise-class component driven applications that scale.",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/bartonmalow/avian.git"
},
"preferGlobal": true,
"main": "./dist/avian.lib.js",
"types": "./dist/avian.lib.d.ts",
"bin": {
"avian": "./dist/avian.cli.js"
},
"scripts": {
"build": "node_modules/.bin/tsc --project ./;",
"test": "node_modules/.bin/mocha --exit --require ts-node/register spec/**/*.spec.ts",
"start": "node_modules/.bin/ts-node src/avian.cli.ts",
"snyk-protect": "snyk protect",
"security-check": "node_modules/.bin/snyk test",
"prepare": "npm run snyk-protect"
},
"contributors": [
"Dan Stephenson",
"Nick Fredricks"
],
"license": "MIT",
"dependencies": {
"@babel/core": "7.24.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.24.0",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@flypapertech/fluentd-logger-middleware": "^0.3.8",
"babel-loader": "9.1.3",
"bunyan": "1.8.15",
"compression": "1.7.4",
"connect-history-api-fallback": "2.0.0",
"connect-redis": "6.1.3",
"cookie": "0.6.0",
"cookie-signature": "1.2.1",
"css-loader": "6.10.0",
"express": "4.18.1",
"express-bunyan-logger-updated": "2.0.1",
"express-minify": "1.0.0",
"express-session": "1.18.0",
"express-static-gzip": "2.1.7",
"fast-glob": "3.3.2",
"graceful-fs": "4.2.10",
"jsonfile": "5.0.0",
"luxon": "3.4.4",
"mkdirp": "3.0.1",
"node-schedule": "2.1.1",
"path-exists": "5.0.0",
"pino-http": "^9.0.0",
"pug-plain-loader": "^1.1.0",
"redis": "4.2.0",
"rimraf": "5.0.5",
"ts-loader": "9.5.1",
"typescript": "4.7.4",
"vue-loader": "17.4.2",
"vue-template-compiler": "2.7.16",
"webpack": "5.90.3",
"webpack-merge": "5.10.0",
"webpack-node-externals": "3.0.0",
"webpack-watched-glob-entries-plugin": "2.2.4",
"yargs": "17.7.2"
},
"devDependencies": {
"@types/connect-history-api-fallback": "1.5.4",
"@types/cookie": "0.6.0",
"@types/cookie-signature": "1.1.2",
"@types/express": "4.17.13",
"@types/express-session": "1.18.0",
"@types/graceful-fs": "4.1.5",
"@types/jsonfile": "^4.0.1",
"@types/luxon": "^3.4.2",
"@types/mocha": "10.0.6",
"@types/redis": "^2.8.7",
"@types/webpack-node-externals": "3.0.4",
"@types/yargs": "17.0.32",
"mocha": "10.3.0",
"snyk": "1.1284.0",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"vue": "2.6.12"
},
"snyk": true
}