-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.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
{
"name": "esacontroller",
"version": "0.0.1",
"description": "Business Controller for ESA",
"main": "esacontroller.js",
"scripts": {
"start": "node esacontroller.js",
"debug": "sh bin/debug",
"test": "mocha --recursive",
"watch": "nodemon -e js -x \"npm run debug\"",
"build": "npm run build:js && npm run build:css",
"predebug": "npm run build:js && npm run build:css",
"build:css": "node-sass --include-path scss --include-path node_modules/foundation-sites/scss scss/main.scss static/app.css",
"watch:css": "nodemon -e scss -x \"npm run build:css\"",
"build:js": "sh bin/build-js",
"watch:js": "nodemon -e ts -x \"npm run build:js\""
},
"dependencies": {
"body-parser": "^1.19.0",
"config": "^1.31.0",
"ejs": "^2.7.4",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"jquery": "3.1.1",
"promise": "^7.1.1",
"string-template": "1.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/zephyyrr/esacontroller.git"
},
"keywords": [
"esa"
],
"author": "Johan Fogelström\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D \"\" \u001b[D\u001b[DZephyyrr\" Fogelström",
"license": "MIT",
"bugs": {
"url": "https://github.com/zephyyrr/esacontroller/issues"
},
"homepage": "https://github.com/zephyyrr/esacontroller#readme",
"devDependencies": {
"@types/jquery": "^3.3.32",
"mocha": "^5.2.0",
"mock-req": "^0.2.0",
"mock-res": "^0.5.0",
"sinon": "^2.4.1",
"typescript": "^2.9.2",
"node-sass": "^4.13.1",
"nodemon": "^1.19.4"
}
}