-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (33 loc) · 1.12 KB
/
package.json
File metadata and controls
34 lines (33 loc) · 1.12 KB
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
{
"name": "circle-app",
"version": "0.0.0",
"description": "root repo for front/back end",
"main": "index.js",
"scripts": {
"bootstrap": "lerna bootstrap",
"bootstrap:production": "lerna bootstrap -- --production --no-optional",
"test:front": "ultra -r --filter \"*frontend\" test",
"test:back": "ultra -r --filter \"*backend\" test",
"test:all": "ultra -r test",
"test": "yarn test:all",
"build:front": "ultra -r --pretty --silent --filter \"*frontend\" build",
"build:back": "ultra -r --filter \"*backend\" build",
"build:all": "ultra -r build",
"build": "yarn build:front",
"monitor": "ultra --monitor",
"clean:all": "ultra -r --root clean",
"clean": "lerna clean --yes"
},
"repository": "git+https://github.com/stephonlawrence/circle-app.git",
"author": "Dennis Orsini <dennisorsini97@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/stephonlawrence/circle-app/issues"
},
"homepage": "https://github.com/stephonlawrence/circle-app#readme",
"devDependencies": {
"lerna": "^3.20.2",
"ultra-runner": "^3.0.1"
},
"private": true
}