forked from web3-storage/web3.storage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 936 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
{
"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/website",
"packages/tools"
],
"scripts": {
"start": "npm-run-all --print-label -p web api",
"api": "npm start -w packages/api",
"web": "npm start -w packages/website",
"test": "npm run lint && npm run test --workspaces",
"test:e2e": "npm run test:e2e --if-present --workspaces",
"lint": "standard --verbose | snazzy",
"lint:fix": "standard --fix "
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"wrangler": "^2.0.15"
},
"standard": {
"globals": ["fetch", "AbortController"],
"ignore": [
"packages/website"
]
},
"engines": {
"node": "16.x",
"npm": ">=7.x"
}
}