-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.55 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
{
"name": "hello-coop",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"install": "cd src/protocol && npm i",
"postinstall": "./scripts/pre-requisites.sh",
"dev": "echo \"npm run dev does not exist.\nHellō Pages: npm run dev:pages\nHellō Protocol: npm run dev:proto\"",
"dev:proto": "cd src/protocol && vite --open",
"dev:pages": "vitepress dev src/pages --open",
"dev:legal": "vitepress dev src/legal --open",
"build:legal": "vitepress build src/legal",
"build:pages": "vitepress build src/pages",
"build:proto": "cd src/protocol && npm run build && cd ../../ && shx cp src/protocol/dist/index.html S3/pages/protocol.html && shx cp src/protocol/dist/assets/* S3/pages/assets/",
"build": "run-s build:* && copyfiles src/index.html S3 -f && copyfiles src/assets/* S3/assets/ -f && copyfiles src/assets/scroll-anim-seq/* S3/assets/scroll-anim-seq -f",
"preview": "vite preview --open",
"test": "linkinator ./S3 --config linkinator.config.json",
"test:blog": "linkinator https://blog.hello.coop https://blog.hello.dev --config linkinator.config.json",
"pr": "./scripts/pr.sh",
"rebase": "git pull origin main --rebase",
"review": "npm run rebase && npm run build && npm run test && npm run pr"
},
"engines": {
"node": "~18",
"npm": "~10"
},
"devDependencies": {
"linkinator": "^5.0.2",
"shx": "^0.3.4",
"vite": "^3.1.1",
"vitepress": "^1.0.0-alpha.4",
"vue": "^3.2.37"
},
"dependencies": {
"copyfiles": "^2.4.1",
"npm-run-all": "^4.1.5"
}
}