-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) 路 2.29 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) 路 2.29 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"private": true,
"name": "root",
"description": "Webstack Builders company website repo",
"author": "Webstack Builders <info@webstackbuilders.com>",
"homepage": "https://webstackbuilders.com",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/webstackdev/webstackbuilders.com.git"
},
"bugs": "https://github.com/webstackdev/webstackbuilders.com/issues",
"engines": {
"node": ">=15.0.0",
"npm": ">=7.0.0",
"yarn": "please-use-npm"
},
"packageManager": "npm",
"scripts": {
"build:studio": "lerna bootstrap && cd studio && npm run build",
"build:web": "lerna bootstrap && (cd studio && SANITY_AUTH_TOKEN=$SANITY_DEPLOY_STUDIO_TOKEN npm run graphql-deploy) && (cd web && npm run build)",
"build": "lerna run build --parallel",
"deploy:graphql": "lerna run graphql-deploy",
"dev": "lerna run dev --parallel",
"format": "lerna run format",
"link": "lerna link --force-local",
"lint": "eslint --format=autolinkable-stylish . && lerna run lint",
"postinstall": "lerna bootstrap",
"postpublish": "pinst --enable",
"pre-commit": "noop",
"prepare": "is-ci || husky install",
"prepublishOnly": "pinst --disable",
"publish": "lerna publish from-git",
"test:coverage": "lerna run test --coverage",
"test": "lerna run test",
"typecheck": "tsc --noEmit",
"update-browserslist": "npx browserslist@latest --update-db",
"version:major": "lerna version major",
"version:minor": "lerna version minor",
"version:patch": "lerna version patch"
},
"devDependencies": {
"@sanity/cli": "^2.18.0",
"@types/node": "^16.9.1",
"@webstackbuilders/eslint-config-company-website": "^0.4.0",
"@webstackbuilders/prettier-config-company-website": "^0.4.0",
"gatsby-cli": "^5.14.0",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"lerna": "^4.0.0",
"noop-cli": "^2.0.0",
"pinst": "^2.1.6",
"tsconfig": "^7.0.0",
"tsconfig-paths-jest-mapper": "^1.4.0",
"typescript": "^4.4.3"
},
"eslintConfig": {
"extends": "@webstackbuilders/eslint-config-company-website",
"ignorePatterns": [
"**/web/public/*",
"**/studio/build/*",
"**/packages/*"
],
"root": true
},
"prettier": "@webstackbuilders/prettier-config-company-website"
}