-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
107 lines (107 loc) · 2.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "mbee",
"version": "2.0.1",
"build": "NO_BUILD_NUMBER",
"description": "Model-Based Engineering Environment",
"main": "mbee.js",
"repository": "https://github.com/lmco/mbee.git",
"author": "Lockheed Martin",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"aws-sdk": "^2.577.0",
"axios": "^0.21.1",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"connect-mongo": "^3.0.0",
"connect-redis": "5.0.0",
"cors": "2.8.5",
"dynamodb-store": "^1.2.0",
"ejs": "^2.5.7",
"express": "^4.16.4",
"express-ejs-layouts": "^2.4.0",
"express-flash": "^0.0.2",
"express-session": "^1.15.6",
"fs-extra": "8.1.0",
"gulp-rename": "^1.4.0",
"ioredis": "^4.19.2",
"ldapjs": "^1.0.2",
"mongoose": "5.7.11",
"multer": "^1.4.2",
"proxy-agent": "^3.1.1",
"randexp": "0.5.3",
"spdy": "^4.0.1",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "2.0.15",
"uuid": "^3.3.3",
"winston": "^3.2.1",
"yarn": "^1.13.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.6.0",
"@babel/runtime": "^7.9.6",
"@fortawesome/fontawesome-free": "^5.7.2",
"babel-loader": "8.0.6",
"bootstrap": "^4.3.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"clsx": "^1.1.0",
"core-js": "^3.9.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.2.1",
"eslint-plugin-jsdoc": "^15.9.2",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"eslint-plugin-security": "^1.4.0",
"gulp": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-markdown": "^5.0.0",
"gulp-minify": "^3.1.0",
"gulp-sass": "^4.0.1",
"html-webpack-plugin": "^4.3.0",
"jquery": "^3.3.1",
"jquery-ui-dist": "^1.12.1",
"jsdoc": "^3.5.5",
"jsdom": "^15.1.1",
"mocha": "^6.2.0",
"nyc": "15.1.0",
"popper.js": "^1.14.7",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-router-dom": "^5.0.1",
"reactstrap": "^8.4.0",
"regenerator-runtime": "^0.13.7",
"sinon": "^7.5.0",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.11"
},
"scripts": {
"build": "node mbee build",
"clean": "node mbee clean",
"docker": "node mbee docker",
"lint": "node mbee lint",
"migrate": "node mbee migrate",
"postinstall": "test $NOPOSTINSTALL || node mbee build",
"preinstall": "test $NOPREINSTALL || node ./scripts/clean.js --all",
"start": "node mbee start",
"test": "nyc --reporter=html --reporter=text node mbee test",
"testall": "nyc --reporter=html --reporter=text node mbee test --all",
"watch": "./node_modules/.bin/webpack --watch --config scripts/webpack-dev.config.js"
},
"engines": {
"node": ">=12.18.3"
},
"nyc": {
"exclude": [
"scripts",
"test",
"app/ui"
]
}
}