-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "react-self",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:docs": "pnpm --dir ./docs dev",
"lint": "eslint --ext .ts,.jsx,.tsx --fix --quiet ./packages",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"build:dev": "rimraf build && rollup --bundleConfigAsCjs --config scripts/rollup/react.conf.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@rollup/plugin-commonjs": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"commitlint": "^17.6.7",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"rollup": "^3.26.3",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-typescript2": "^0.35.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@rollup/plugin-replace": "^5.0.5"
}
}