This repository has been archived by the owner on Nov 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 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
{
"name": "build-monitor",
"version": "1.0.0",
"description": "Combine the view of build status from local and docker jenkins",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"start": "NODE_ENV=production node app.js",
"start-dev": "NODE_ENV=development nodemon app.js --ignore client/ | bunyan -o short",
"debug": "NODE_ENV=development node --nolazy --inspect-brk=9229 app.js | bunyan -o short"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KTH/build-monitor.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/KTH/build-monitor/issues"
},
"homepage": "https://github.com/KTH/build-monitor#readme",
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@kth/sis_import_utils": "^1.2.2",
"azure-storage": "^2.10.3",
"babel-loader": "^8.0.6",
"babel-plugin-inferno": "^5.1.0",
"bootstrap": "^4.3.1",
"bunyan": "^1.8.12",
"date-fns": "^1.30.1",
"dotenv": "^6.2.0",
"express": "^4.17.0",
"got": "^9.6.0",
"inferno": "^5.6.1",
"kth-node-server": "^3.1.1",
"kth-style": "^3.2.8",
"moment": "^2.24.0",
"papaparse": "^4.6.3",
"path": "^0.12.7",
"popper.js": "^1.15.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1"
},
"devDependencies": {
"nodemon": "^1.19.0",
"standard": "^12.0.1",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0"
},
"standard":{
"ignore": [
"client/*"
]
}
}