-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
{
"name": "upe-react-components",
"version": "1.0.0",
"description": "A library of common React components used throughout our applications.",
"main": "build/index.js",
"files": "build",
"scripts": {
"start": "webpack-dev-server --mode development --open",
"build": "webpack --mode production",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.{js,jsx,json,md,mdx}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --max-warnings=0"
],
"src/**/*.{js,jsx,json,md,mdx}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/BUUPE/React-Components.git"
},
"author": "Rudhra Raveendran",
"license": "MIT",
"bugs": {
"url": "https://github.com/BUUPE/React-Components/issues"
},
"homepage": "https://github.com/BUUPE/React-Components#readme",
"devDependencies": {
"@neutrinojs/react-components": "^9.3.0",
"babel-eslint": "^10.1.0",
"docz": "^2.3.1",
"eslint": "^7.6.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"neutrino": "^9.3.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@hot-loader/react-dom": "^16.13.0",
"core-js": "3",
"firebase": "^7.17.1",
"lodash.omit": "^4.5.0",
"react-hot-loader": "^4.12.21",
"styled-components": "^5.1.1"
}
}