-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "@peckhamcc/www",
"version": "1.0.0",
"description": "Demo: [https://peckhamcc.github.io/www/](https://peckhamcc.github.io/www/)",
"main": "index.js",
"scripts": {
"reset": "lerna run --parallel clean && rm -rf packages/*/node_modules && rm -rf node_modules",
"test": "lerna run --parallel test",
"build": "lerna run --concurrency 1 build",
"deploy": "lerna run --concurrency 1 deploy",
"start": "lerna run --parallel --scope @peckhamcc/lambda-* build:dev && lerna run --scope @peckhamcc/routes build && NODE_ENV=development lerna run --parallel start",
"clean": "lerna run --parallel clean",
"lint": "lerna run --parallel lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peckhamcc/www.git"
},
"author": "Alex Potsides <alex@achingbrain.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/peckhamcc/www/issues"
},
"homepage": "https://peckham.cc",
"devDependencies": {
"babel-eslint": "^10.0.1",
"lerna": "^4.0.0",
"pre-commit": "^1.2.2",
"standard": "^16.0.3"
},
"pre-commit": [
"lint",
"test"
],
"standard": {
"parser": "babel-eslint",
"ignore": [
"packages"
]
},
"workspaces": [
"packages/*"
]
}