-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.12 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"private": true,
"name": "assemble-package",
"version": "1.0.0",
"description": "NPM package boilerplate",
"main": "index.js",
"author": "Public Assembly",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build:packages": "preconstruct build",
"build:next": "yarn workspace nextjs-dapp run build",
"clean": "yarn clean:next && yarn clean:next && yarn clean:root",
"clean:root": "rimraf --no-glob ./.cache ./.yarn ./.parcel-cache node_modules",
"clean:next": "yarn workspace nextjs-dapp run clean",
"clean:react": "yarn workspace reactjs-dapp run clean",
"build:react": "yarn workspace reactjs-dapp run build",
"example:next": "preconstruct dev && yarn workspace nextjs-dapp run dev",
"example:react": "preconstruct dev && yarn workspace reactjs-dapp run dev",
"postinstall": "preconstruct dev",
"prepare": "husky install",
"pretty": "prettier --write .",
"release": "preconstruct build && changeset && changeset publish"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.24.4",
"@preconstruct/cli": "^2.2.1",
"@zoralabs/eslint-config": "^0.0.1",
"buffer": "^6.0.3",
"eslint": "^8.23.1",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier-plugin-tailwindcss": "^0.1.13",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"tsc-files": "^1.1.3",
"typescript": "^4.8.3"
},
"preconstruct": {
"packages": [
"packages/*"
]
},
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
],
"packages/**/*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
],
"**/*.{ts,tsx}": [
"tsc-files --noEmit"
]
},
"engines": {
"node": "^14.13.1 || >=16.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"packageManager": "[email protected]"
}