-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
executable file
·87 lines (87 loc) · 2.52 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
{
"name": "security-belt",
"version": "1.0.1",
"license": "Apache 2.0",
"description": "A framework for improving the IT-Security of your teams through gamification.",
"keywords": [
"security",
"self-assessment",
"gamification",
"webapp"
],
"repository": "github:otto-de/security-belt",
"engines": {
"node": "12"
},
"private": true,
"bin": {
"security-belt-server": "./bin/security-belt-server",
"security-belt-migrator": "./scripts/migration-runner.js"
},
"scripts": {
"build": "npm run build:production",
"build:production": "NODE_ENV=production webpack --progress",
"build:dev": "NODE_ENV=development webpack --progress --watch",
"lint:js": "eslint *.js src/",
"lint:yaml": "yamllint config/skills/*/*.yml",
"lint": "npm run lint:js && npm run lint:yaml",
"test:nolint": "mocha --reporter spec",
"test": "npm run lint && npm run test:nolint",
"migrate": "./scripts/migration-runner.js",
"prestart": "npm run build && npm run migrate",
"start": "./bin/security-belt-server start",
"clean": "cd public && ls | grep -Ev 'favicon.ico|logo.svg|logo.png' | xargs rm",
"prepush": "npm run test",
"precommit": "npm run lint"
},
"dependencies": {
"@material/auto-init": "^0.32.0",
"@material/button": "^0.32.0",
"@material/card": "^0.32.0",
"@material/elevation": "^0.28.0",
"@material/layout-grid": "^0.24.0",
"@material/list": "^0.32.0",
"@material/ripple": "^0.32.0",
"@material/tabs": "^0.32.0",
"@material/theme": "^0.30.0",
"@material/toolbar": "^0.32.0",
"@material/typography": "^0.28.0",
"ajv": "^6.12.6",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.19.0",
"bunyan": "^1.8.15",
"css-loader": "^5.2.0",
"express": "^4.17.1",
"file-loader": "^1.1.11",
"js-yaml": "^3.14.1",
"mini-css-extract-plugin": "^1.4.0",
"mongodb": "^3.6.5",
"node-sass": "^4.14.1",
"normalize.css": "^8.0.1",
"pug": "^3.0.2",
"request": "^2.88.2",
"resolve-url-loader": "^3.1.2",
"roboto-fontface": "^0.9.0",
"sass-loader": "^6.0.7",
"serve-favicon": "^2.5.0",
"style-loader": "^0.20.3",
"walk": "^2.3.14",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"husky": "^6.0.0",
"mocha": "^8.3.2",
"sinon": "^4.5.0",
"yaml-lint": "^1.2.4"
},
"babel": {
"presets": [
"es2015"
]
}
}