-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.12 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
{
"name": "@itsjonq/controls",
"version": "0.0.9",
"description": "A control panel to develop React UI",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"sideEffects": false,
"private": false,
"scripts": {
"prestart": "zero prestart",
"build:es": "BUILD_FORMAT=es zero build -d dist/es",
"build:cjs": "BUILD_FORMAT=cjs zero build -d dist/cjs",
"build": "npm run build:cjs && npm run build:es -- --no-clean",
"lint": "zero lint",
"dev": "zero test",
"test": "zero test --coverage",
"test:coverage": "zero test --coverage",
"format": "zero format",
"validate": "zero validate",
"release": "zero release",
"version": "npm run build",
"precommit": "zero pre-commit",
"start": "npm run storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"author": "Jon Quach <hello@jonquach.com> (https://jonquach.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/itsjonq/controls.git"
},
"bugs": {
"url": "https://github.com/itsjonq/controls/issues"
},
"homepage": "https://github.com/itsjonq/controls#readme",
"keywords": [
"react",
"ui",
"development",
"dev-tools",
"knobs",
"controls",
"control-panel",
"control"
],
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@itsjonq/is": "^0.0.2",
"react-color": "^2.17.3",
"react-popper": "^1.3.7",
"react-useportal": "^1.0.13",
"styled-view": "^0.0.9",
"tinycolor2": "^1.4.1",
"unistore": "^3.5.1"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@itsjonq/cyan": "^0.15.1",
"@itsjonq/zero": "^4.1.9",
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-links": "^5.2.8",
"@storybook/addons": "^5.2.8",
"@storybook/react": "^5.2.8",
"babel-loader": "^8.0.6",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"publishConfig": {
"access": "public"
}
}