-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
99 lines (99 loc) · 3.06 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "solive-workspaces",
"version": "0.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"start:demo": "nx run solive-demo:start",
"start:doc": "nx run solive-doc:start",
"build:demo": "nx run solive-demo:build",
"build:doc": "nx run solive-doc:build",
"start:lib": "nx run-many --target=start",
"build:lib": "nx run-many --target=build --projects=solive-compiler-utils,solive-solc,solive-provider,solive-core,solive-docusaurus-theme-code --parallel=false",
"lint": "eslint **/*.{ts,d.ts,js} --ignore-pattern \"apps/**\"",
"lint:fix": "pnpm run lint --fix --ignore-pattern \"apps/**\"",
"release:only": "changeset publish --registry=https://registry.npmjs.com/",
"release": "pnpm release:only",
"version-packages": "changeset version",
"changeset": "changeset",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"postinstall": "pnpm run build:lib",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"pre-commit": "lint-staged --no-stash",
"clean": "rimraf **/dist && rimraf node_modules **/node_modules"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.22.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^11.0.0",
"@tsconfig/node16-strictest-esm": "^1.0.1",
"@types/node": "17.0.41",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-define-config": "^1.5.1",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"nx": "^15.0.0",
"postcss": "^8",
"postcss-cli": "^8",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.75.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.0",
"tslib": "^2.5.0",
"typescript": "^4.7.3",
"uuid": "^8.3.2",
"webpack": "^5.77.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pnpm lint:fix",
"git add"
]
},
"engines": {
"node": ">=16.8.0",
"pnpm": ">=7"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"eslint-plugin-prettier": "^4.2.1"
}
}