-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.88 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": "color-selector-react",
"version": "0.3.0-beta.4",
"jsnext:source": "./src/index.tsx",
"types": "./dist/types/index.d.ts",
"main": "./dist/lib/index.js",
"module": "./dist/es/index.js",
"scripts": {
"prepare": "modern build && husky install",
"dev": "modern dev",
"storybook": "modern dev storybook",
"build": "modern build",
"build:watch": "modern build -w",
"reset": "rimraf ./**/node_modules",
"lint": "modern lint",
"change": "modern change",
"bump": "modern bump",
"pre": "modern pre",
"change-status": "modern change-status",
"gen-release-note": "modern gen-release-note",
"release": "modern release",
"new": "modern new",
"upgrade": "modern upgrade"
},
"lint-staged": {
"*.{ts,tsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
],
"*.{js,jsx,mjs,mjsx,cjs,cjsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"dependencies": {
"react-color": "^2.19.3"
},
"devDependencies": {
"@modern-js-app/eslint-config": "2.5.0",
"@modern-js/eslint-config": "2.5.0",
"@modern-js/module-tools": "2.5.0",
"@modern-js/plugin-storybook": "2.5.1-beta.0",
"@modern-js/runtime": "2.5.0",
"@modern-js/tsconfig": "2.5.0",
"@types/jest": "~29.2.3",
"@types/node": "~16.11.7",
"@types/react": "^17",
"@types/react-color": "^3.0.6",
"husky": "~8.0.1",
"lint-staged": "~13.1.0",
"prettier": "~2.8.1",
"react": "^17",
"react-dom": "^17",
"rimraf": "~3.0.2",
"typescript": "~4.9.4"
},
"peerDependencies": {
"react": "^17",
"react-dom": "^17"
},
"sideEffects": [],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}