forked from fracz/supla-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.04 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
{
"name": "supla-scripts",
"version": "3.2.0",
"description": "",
"license": "UNLICENSED",
"private": true,
"scripts": {
"build": "cd frontend && npm run -s build",
"dist": "npm install && npm run dist:backend && npm run dist:frontend",
"dist:backend": "cd backend && composer-runner -- install --optimize-autoloader --no-dev",
"dist:frontend": "cd frontend && npm run dist",
"init": "php supla-scripts init",
"install": "node scripts/logo.js && npm run install:backend && npm run install:frontend",
"install:backend": "node scripts/version-dump.js && cd backend && composer-runner -- install",
"install:frontend": "cd frontend && npm install",
"lint": "npm run lint:frontend",
"lint:frontend": "cd frontend && npm run -s lint",
"release": "npm run -s dist && node scripts/release.js",
"watch": "cd frontend && npm run -s watch"
},
"devDependencies": {
"async": "2.4.1",
"chalk": "1.1.3",
"del": "3.0.0",
"fs-extra": "3.0.1",
"node-composer-runner": "0.4.0",
"ora": "1.2.0"
}
}