forked from easyblockshq/easyblocks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.33 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
{
"name": "root",
"private": true,
"scripts": {
"dev": "lerna run --stream dev --scope '@swell/easyblocks-core' --scope '@swell/easyblocks-editor'",
"nuke": "./scripts/nuke.sh",
"clean": "./scripts/clean.sh",
"build": "nx run-many --target build --exclude website",
"test": "nx run-many --target test",
"lint": "nx affected --target lint --base origin/main -- --quiet",
"lint:packages": "nx run-many --target lint --projects '@easyblocks/*' -- --quiet",
"lint:all": "nx run-many --target lint -- --quiet",
"check": "nx run-many --target check",
"prepare": "husky install",
"publish-prerelease": "lerna version --no-private && npm run build && lerna publish from-git",
"supabase-start": "supabase start",
"supabase-stop": "supabase stop",
"supabase-restart": "npm run supabase-stop && npm run supabase-start"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@jest/types": "^26",
"@microsoft/api-extractor": "^7.39.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^3.0.1",
"@types/jest": "^26.0.20",
"@types/node": "^18",
"@types/webpack-bundle-analyzer": "^4.6.0",
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"babel-plugin-styled-components": "^2.0.7",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"knip": "^4.2.1",
"lerna": "^6.6.0",
"lint-staged": "^12.1.2",
"nx": "16.6.0",
"prettier": "2.8.8",
"rollup": "^2.79.1",
"rollup-plugin-preserve-directives": "^0.1.1",
"rollup-plugin-visualizer": "^5.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"pnpm": {
"overrides": {
"@types/react": "^18.2.20"
}
}
}