This repository has been archived by the owner on Feb 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
113 lines (113 loc) · 3.29 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "podverse-ui",
"version": "3.3.1",
"description": "React / Typescript component library for Podverse web applications",
"license": "MIT",
"contributors": [
"Mitch Downey"
],
"repository": {
"url": "https://github.com/podverse/podverse-ui.git",
"type": "git"
},
"main": "build/bundle.min.js",
"scripts": {
"build": "npm run build-lib && build-storybook",
"build-lib": "webpack --ext ts,tsx,scss --ignore ./build",
"build-lib:nodemon": "nodemon --exec webpack --ext ts,tsx,scss --ignore ./build",
"build-storybook": "build-storybook",
"lint:scss": "stylelint src/scss/**/*.scss",
"lint:ts": "eslint src/**/*.ts src/**/*.tsx src/**/*.js",
"prepare": "npm run build-lib",
"storybook": "start-storybook -p 6006 -c .storybook -s ./.storybook/public"
},
"lint-staged": {
"src/**/*.{ts,tsx,js}": [
"eslint .",
"git add"
],
"src/**/*.scss": [
"stylelint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.25",
"@fortawesome/free-brands-svg-icons": "5.11.2",
"@fortawesome/free-regular-svg-icons": "5.11.2",
"@fortawesome/free-solid-svg-icons": "5.11.2",
"@fortawesome/react-fontawesome": "0.1.7",
"@sambego/storybook-state": "1.3.6",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"badwords-list": "^1.0.0",
"classnames": "2.2.6",
"clipboard": "2.0.4",
"css-loader": "^3.5.3",
"eslint": "6.x",
"eslint-config-react-app": "5.1.0",
"eslint-plugin-flowtype": "3.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "1.x",
"husky": "3.1.0",
"linkifyjs": "2.1.8",
"lint-staged": "9.5.0",
"next": "9.1.4",
"nodemon": "^2.0.2",
"password-validator": "5.0.3",
"podverse-shared": "^3.0.0",
"post-loader": "^2.0.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-modal": "3.11.1",
"react-player": "1.14.2",
"reactstrap": "8.1.1",
"sanitize-html": "2.3.2",
"striptags": "3.2.0",
"stylelint": "12.0.0",
"stylelint-config-recommended": "3.0.0",
"stylelint-scss": "3.13.0"
},
"devDependencies": {
"@babel/core": "7.7.4",
"@storybook/addon-info": "5.2.7",
"@storybook/addon-knobs": "5.2.7",
"@storybook/addon-options": "5.2.7",
"@storybook/react": "5.2.7",
"@types/jest": "24.0.23",
"@types/node": "12.12.14",
"@types/react": "16.9.13",
"babel-core": "6.26.3",
"babel-loader": "8.0.6",
"bootstrap": "4.4.1",
"copy-webpack-plugin": "5.0.5",
"cpx": "1.5.0",
"jest": "24.9.0",
"mini-css-extract-plugin": "0.8.0",
"node-sass": "4.14.1",
"react-docgen-typescript-loader": "3.6.0",
"sass-loader": "8.0.0",
"storybook-addon-jsx": "7.1.13",
"stylelint-webpack-plugin": "1.1.0",
"ts-jest": "24.2.0",
"ts-loader": "6.2.1",
"tsconfig-paths-webpack-plugin": "3.2.0",
"typescript": "3.9.7",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-merge": "4.2.2",
"webpack-node-externals": "1.7.2"
},
"peerDependencies": {
"bootstrap": "4.4.1",
"react": "16.12.0",
"react-dom": "16.12.0"
}
}