-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "web3.storage",
"version": "1.0.0",
"private": true,
"license": "(Apache-2.0 AND MIT)",
"workspaces": [
"packages/api",
"packages/client",
"packages/cron",
"packages/db",
"packages/w3",
"packages/w3up-launch",
"packages/website",
"packages/tools"
],
"scripts": {
"start": "npm-run-all --print-label -p web api",
"stop": "npm-run-all --print-label -p web:stop api:stop",
"api": "npm start -w packages/api",
"api:stop": "npm run stop -w packages/api",
"web": "npm start -w packages/website",
"web:stop": "npm run --if-present stop -w packages/website",
"test": "npm run lint && npm run test --workspaces",
"test:e2e": "npm run test:e2e --if-present --workspaces",
"lint": "npm-run-all -p lint:workspaces lint:standard",
"lint:workspaces": "npm -ws run --if-present lint",
"lint:fix": "npm-run-all lint:standard:fix lint:fix:workspaces",
"lint:fix:workspaces": "npm -ws run --if-present lint:fix",
"lint:standard": "standard --verbose | snazzy",
"lint:standard:fix": "standard --fix"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.33.1",
"npm-run-all": "^4.1.5",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"wrangler": "^2.0.23"
},
"standard": {
"globals": [
"fetch",
"AbortController"
],
"ignore": [
"packages/website"
]
},
"engines": {
"node": "18.x",
"npm": ">=7.x"
}
}