-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.17 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
{
"name": "drywall",
"version": "0.6.1",
"description": "drywall component library",
"main": "lib/index.js",
"module": "es/index.js",
"sideEffects": false,
"files": [
"es",
"lib",
"src",
"docs",
"styleguide.config.js"
],
"scripts": {
"build": "create-react-styleguide script build",
"build:watch": "create-react-styleguide script build:watch",
"build:styleguide": "create-react-styleguide script build:styleguide",
"clean": "create-react-styleguide script clean",
"eslint": "create-react-styleguide script eslint",
"eslint:fix": "create-react-styleguide script eslint:fix",
"start": "create-react-styleguide script start",
"test": "create-react-styleguide script test",
"test:coverage": "create-react-styleguide script test:coverage",
"test:update": "create-react-styleguide script test:update",
"test:watch": "create-react-styleguide script test:watch",
"prepublishOnly": "create-react-styleguide script prepublishOnly",
"release": "standard-version --commit-all",
"predeploy": "npm run build:styleguide",
"deploy": "gh-pages -d styleguide"
},
"husky": {
"hooks": {
"pre-commit": "npm run eslint && npm run test"
}
},
"dependencies": {
"prop-types": "^15.7.2",
"react-spring": "^8.0.27"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"styled-components": ">=4.1.2"
},
"devDependencies": {
"@sinonjs/fake-timers": "^6.0.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-zillow": "^4.2.0",
"create-react-styleguide": "^5.2.0",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-zillow": "^3.5.1",
"gh-pages": "^2.2.0",
"glob": "^7.1.6",
"husky": "^4.2.3",
"jest-styled-components": "^6.3.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"standard-version": "^6.0.1",
"styled-components": "^4.4.1"
},
"author": "[email protected]",
"homepage": "https://github.com/zillow/drywall",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:zillow/drywall.git"
},
"keywords": [
"react-component"
]
}