-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.01 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": "@intactile/react-layout",
"version": "0.6.0",
"description": "React layout components",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"author": "Intactile Design",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/intactile/react-layout.git"
},
"homepage": "https://github.com/intactile/react-layout#readme",
"keywords": [
"react",
"css",
"layout"
],
"prettier": {
"singleQuote": true
},
"dependencies": {},
"peerDependencies": {
"@emotion/react": ">=11.0.0",
"prop-types": ">=15.7.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/react": "^11.7.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/react": "^6.4.9",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"jest": "^27.4.5",
"np": "^7.6.0",
"prettier": "^2.5.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.61.1"
},
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"release": "np --no-tests --no-release-draft --message='Bump version to %s'",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"test": "jest"
}
}