-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
49 lines (49 loc) · 1.35 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
{
"name": "villain-project",
"private": true,
"description": "An open source web based comic book reader as a react component",
"scripts": {
"deploy": "chmod +x deploy.sh && ./deploy.sh",
"bootstrap": "lerna bootstrap",
"start:web": "lerna run --scope villain-web start --parallel",
"build:web": "lerna run --scope villain-web build --stream",
"start:react": "lerna run --scope villain-react start --parallel",
"build:react": "lerna run --scope villain-react build --stream",
"format": "pretty-quick",
"format:css": "npx prettier --config ./.prettierrc --write **/*.css.module",
"docs:copy": "node ./docs",
"docsify:serve": "npx docsify serve ./docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/btzr-io/Villain.git"
},
"keywords": [
"comic",
"comics",
"comic book",
"react",
"reader",
"viewer"
],
"workspaces": [
"packages/*"
],
"author": "Baltazar Gomez",
"license": "MIT",
"bugs": {
"url": "https://github.com/btzr-io/Villain/issues"
},
"homepage": "https://github.com/btzr-io/Villain#readme",
"devDependencies": {
"docsify-cli": "^4.4.1",
"lerna": "^3.20.2",
"prettier": "^1.17.0",
"pretty-quick": "^2.0.0"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"reakit": "^1.0.0-beta.13"
}
}