-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 1.18 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "run-s test:*",
"test:api": "pnpm --filter api test",
"test:client": "pnpm --filter nftstorage.link test",
"test:website": "pnpm --filter website test",
"test:edge-gateway": "pnpm --filter edge-gateway test",
"build:client": "pnpm --filter nftstorage.link build",
"build:website": "pnpm --filter website build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rm -rf node_modules pnpm-lock.yml packages/*/{pnpm-lock.yml,.next,out,coverage,.nyc_output,worker,dist,node_modules}"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.*": "prettier --ignore-unknown --write"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"devDependencies": {
"dnslink-cloudflare": "^3.0.0",
"lint-staged": "^12.3.7",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.7.0",
"wrangler": "^2.0.28"
},
"resolutions": {
"prettier": "2.5.1"
},
"engines": {
"node": "16.x"
}
}