-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.81 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.81 KB
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
{
"name": "@quantargo/react-layout",
"version": "2.3.0",
"description": "Drop-in layout components with zero configuration",
"main": "dist/index.js",
"scripts": {
"build": "tsc --outDir dist/lib --declarationDir dist/types --declaration true && rollup -c",
"start": "rollup -c -w",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quantargo/react-layout.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/runtime": "^7.11.2",
"@rollup/plugin-typescript": "^6.0.0",
"@storybook/addon-actions": "^6.0.22",
"@storybook/addon-essentials": "^6.0.22",
"@storybook/addon-links": "^6.0.22",
"@storybook/react": "^6.0.22",
"@storybook/theming": "^6.0.22",
"@types/react": "^16.9.50",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-is": "^16.13.1",
"rollup": "^1.29.0",
"rollup-plugin-postcss": "^3.1.8",
"standardx": "^5.0.0",
"style-loader": "^1.2.1",
"typescript": "^4.0.0"
},
"keywords": [
"react",
"layout"
],
"author": "Christian Kaindl",
"license": "MIT",
"bugs": {
"url": "https://github.com/quantargo/react-layout/issues"
},
"homepage": "https://github.com/quantargo/react-layout#readme",
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
}
}