-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.45 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
{
"name": "upkeep",
"version": "0.2.1",
"private": true,
"main": "electron.js",
"scripts": {
"start": "npm run build:ui && npm run start:server",
"start:dev": "npm run build:ui:dev && npm run start:server",
"start:local": "npm run build:ui && node launcher.js",
"start:server": "node ./bin/www serve",
"start:watcher": "node ./app.js",
"build:ui": "NODE_ENV=production vue build ./src/app.vue",
"build:ui:dev": "NODE_ENV=development vue build ./src/app.vue ",
"test": "mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"tar": "tar --exclude={\"node_modules\",\"dist\",\"logs\",\".git\"} -czvf upkeep.tar.gz ./"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^2.0.6",
"@vue/cli": "^4.5.17",
"@vue/cli-service-global": "^4.5.17",
"axios": "^0.21.4",
"cookie-parser": "^1.4.6",
"css-loader": "^6.7.1",
"debug": "^2.6.9",
"dotenv": "^8.6.0",
"express": "^4.18.1",
"morgan": "^1.10.0",
"node-cron": "^2.0.3",
"node-html-parser": "^1.4.9",
"ping": "^0.2.3",
"sass": "^1.51.0",
"sass-loader": "^10.2.1",
"shelljs": "^0.8.5",
"winston": "^3.7.2",
"write-json-file": "^4.3.0"
},
"devDependencies": {
"chai": "^4.3.6",
"electron": "^18.2.3",
"mocha": "^6.2.3"
}
}