-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.82 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
{
"version": "0.8.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"description": "Quick development controls for React projects. Change values and colors quickly in your development environment or storybooks.",
"repository": "git+https://github.com/sghall/react-quickie-controls.git",
"keywords": [
"react",
"hooks",
"development",
"controls",
"dat.gui",
"value",
"slider",
"select",
"color",
"picker"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"release": "release-it",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-quickie-controls",
"author": "Steven Hall",
"module": "dist/react-quickie-controls.esm.js",
"devDependencies": {
"@babel/core": "^7.11.4",
"@storybook/addon-actions": "^6.0.16",
"@storybook/addon-links": "^6.0.16",
"@storybook/addons": "^6.0.16",
"@storybook/react": "^6.0.16",
"@types/jest": "^26.0.10",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/react-select": "^3.0.19",
"babel-loader": "^8.1.0",
"husky": "^4.2.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"release-it": "^13.6.9",
"ts-loader": "^8.0.2",
"tsdx": "^0.13.2",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"dependencies": {
"react-color": "^2.18.1",
"react-compound-slider": "^2.5.0",
"react-select": "^3.1.0"
}
}