-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 968 Bytes
/
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
{
"name": "carioca",
"description": "Build server-rendered and single-page React applications with no configuration",
"private": true,
"workspaces": [
"packages/*"
],
"publishConfig": {
"access": "public"
},
"author": "Patrick Cason <me@patrickcason.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/cereallarceny/carioca.git"
},
"keywords": [
"carioca",
"javascript",
"isomorphic",
"universal",
"ssr",
"spa",
"react",
"preact",
"webpack",
"server-side-rendering",
"single-page-app"
],
"scripts": {
"clean": "lerna clean --yes && rm -rf node_modules",
"reset": "yarn clean && lerna bootstrap",
"release": "yarn reset && lerna publish",
"test": "lerna run test"
},
"husky": {
"hooks": {
"pre-commit": "lerna run compile"
}
},
"devDependencies": {
"husky": "^4.3.0",
"lerna": "^3.22.1"
}
}