-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1.05 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
{
"license": "Apache-2.0",
"author": "[email protected]",
"homepage": "https://github.com/lastui/examples#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lastui/examples.git"
},
"bugs": {
"url": "https://github.com/lastui/examples/issues"
},
"scripts": {
"build": "npm run build:spa && npm run build:modules",
"build:modules": "rocker build",
"build:spa": "cd spa && npm run build",
"postinstall": "npm run install:spa && npm run install:server",
"install:server": "npm --prefix=server i",
"install:spa": "npm --prefix=spa i",
"lint": "rocker lint",
"serve": "cd server && npm start",
"start": "rocker start",
"test": "npm run test:spa && npm run test:modules",
"test:modules": "ls -d -- modules/* | xargs -r -I {} bash -c 'rocker --cwd={} test'",
"test:spa": "cd spa && npm test",
"upgrade": "rocker upgrade && rocker upgrade --cwd=spa"
},
"devDependencies": {
"@lastui/dependencies": "1.5.6",
"@lastui/rocker": "0.20.25",
"bulma": "1.0.0"
}
}