-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.7 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.7 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-component-npm-poc",
"version": "0.0.0",
"description": "create JS bundle from typescript",
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build"
],
"scripts": {
"clean": "rm -rf build",
"prettier": "prettier",
"build:babel": "",
"build:rollup": "npm run clean && rollup -c",
"build:tsc": "",
"lint": "eslint",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix",
"prettier:write": "npm run prettier",
"storybook:dev": "start-storybook -p 9001",
"storybook:build": "build-storybook",
"stylelint": "stylelint",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucksp/react-component-npm-poc.git"
},
"author": "Philip Lucks",
"license": "ISC",
"bugs": {
"url": "https://github.com/lucksp/react-component-npm-poc/issues"
},
"engines": {
"node": ">=12",
"npm": ">=6"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@storybook/addon-actions": "^6.0.16",
"@storybook/addon-essentials": "^6.0.16",
"@storybook/addon-knobs": "^6.0.16",
"@storybook/addon-links": "^6.0.16",
"@storybook/react": "^6.0.16",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/storybook__addon-knobs": "^5.2.1",
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-core": "^6.26.3",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-standard": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^5.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-svg": "^11.0.36",
"rollup": "^2.26.3",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-typescript2": "^0.27.2",
"styled-components": "^5.1.1",
"stylelint": "^13.6.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
},
"dependencies": {}
}