forked from GladysAssistant/Gladys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.33 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
{
"name": "gladys",
"version": "4.2.4",
"description": "A privacy-first, open-source home assistant",
"main": "index.js",
"engines": {
"node": "14.x",
"npm": "6.x"
},
"scripts": {
"postinstall": "run-p install-server:dev install-front:dev",
"start": "run-p start-server:dev start-front:dev",
"test": "run-p test-server test-front",
"install-server:dev": "cd server && npm install",
"start-server:dev": "cd server && npm start",
"test-server": "cd server && npm test",
"install-front:dev": "cd front && npm install",
"start-front:dev": "cd front && npm start",
"test-front": "cd front && npm test",
"db-migrate:dev": "cd server && npm run db-migrate:dev",
"build:clean": "shx --silent rm -rf server/static",
"build-front": "cd front && npm run build",
"copy-front": "shx cp -R front/build server/static",
"build": "npm run build:clean && npm run build-front && npm run copy-front",
"generate-changelog": "auto-changelog",
"clean-node-modules": "npx rimraf ./**/node_modules"
},
"repository": {
"type": "git",
"url": "https://github.com/GladysAssistant/Gladys"
},
"author": "Pierre-Gilles Leymarie",
"license": "Apache-2.0",
"devDependencies": {
"all-contributors-cli": "^6.15.0",
"npm-run-all": "^4.1.5",
"shx": "^0.3.2"
},
"dependencies": {}
}