-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "@graphcms/react-image",
"version": "0.0.0-semantically-released",
"main": "index.js",
"license": "MIT",
"author": "Hygraph",
"contributors": [
"Hugo Meissner <[email protected]>"
],
"scripts": {
"build": "babel src --out-dir ./ --source-maps",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "npm run build"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.6",
"@storybook/addon-links": "^3.3.6",
"@storybook/react": "^3.3.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-airbnb": "^2.4.0",
"eslint": "^4.14.0",
"eslint-config-blazity": "^1.0.4",
"prettier": "^2.2.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"peerDependencies": {
"react": "^16.x.x || ^15.6.0",
"react-dom": "^16.x.x || ^15.6.0"
},
"dependencies": {
"intersection-observer": "^0.5.0",
"prop-types": "^15.6.0"
},
"publishConfig": {
"access": "public"
}
}