-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 2.48 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "BorderBuddy",
"version": "0.0.1",
"description": "Your Border Buddy",
"scripts": {
"lerna:bootstrap": "lerna bootstrap",
"migrate": "lerna run --scope api migrate --stream",
"seed": "lerna run --scope api seed --stream",
"seed:deployment": "lerna run --scope api seed:deployment --stream",
"worker": "lerna run --scope api worker --stream",
"test:worker": "lerna run --scope api test:worker --stream",
"push:staging": "npm run build && npm run clean && cf target -s staging && cf push -f manifest.staging.yml -v",
"push:production": "npm run build && npm run clean && cf target -s production && cf push -f manifest.production.yml -v",
"build-client": "lerna run --scope client build",
"build-api": "lerna run --scope api build",
"copy-assets": "cp -R ./packages/client/dist/* ./packages/api/dist/public && cp -R ./packages/client/dist/* ./packages/api/src/public",
"build": "npm run build-client && npm run build-api && npm run copy-assets",
"dev": "lerna run dev --stream --parallel",
"test": "lerna run test && npm run test:jest",
"test:jest": "lerna run --scope client test:jest",
"start": "lerna run --scope api start --stream",
"todo": "lerna run todo",
"todo-ci": "lerna run todo-ci",
"clean": "lerna run clean && rm -rf node_modules",
"clean:dist": "lerna run clean:dist",
"postinstall": "npm run lerna:bootstrap && npm run build && npm run migrate && npm run seed:deployment"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "https://github.com/EmilyDev/Hack-The-Ban.git"
},
"keywords": [
"hacktheban"
],
"author": "emilyho",
"license": "ISC",
"bugs": {
"url": "https://github.com/EmilyDev/Hack-The-Ban.git"
},
"jest": {
"globals": {
"window": true
},
"testEnvironment": "jsdom",
"testURL": "http://localhost"
},
"homepage": "https://github.com/EmilyDev/Hack-The-Ban.git",
"dependencies": {
"lerna": "^3.22.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-trailing-commas": "^6.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"typescript": "^3.9.3"
}
}