-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.35 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
{
"name": "remote-react-comps",
"version": "1.0.0",
"description": "Shared react components suite for company applications",
"author": "MaxBax",
"homepage": "https://github.com/maxbax/RemoteReactComps#readme",
"bugs": {
"url": "https://github.com/maxbax/RemoteReactComps/issues"
},
"main": "src/index.js",
"keywords": [
"remote-components",
"react"
],
"license": "MIT",
"dependencies": {
"debug": "4.3.3",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/eslint-parser": "7.16.3",
"@babel/node": "7.16.0",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.0",
"eslint": "8.4.1",
"eslint-config-airbnb": "19.0.2",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "4.3.0",
"jest": "27.4.3"
},
"files": [
"lib/**",
"!**.test.**",
"README.md",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maxbax/RemoteReactComps.git"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "babel src --out-dir lib",
"prepare": "npm run build"
}
}