This repository has been archived by the owner on Aug 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.97 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
{
"name": "react-copy",
"version": "1.3.0",
"description": "Component for copy to clipboard",
"main": "build/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hamsterbacke23/react-copy"
},
"author": {
"name": "Tobias Schmidt",
"email": "[email protected]"
},
"scripts": {
"test": "jest",
"start": "webpack --mode development --watch",
"build": "webpack --mode production",
"precommit": "lint-staged",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore",
"lint:js": "npm run lint:eslint -- . "
},
"jest": {
"setupFiles": [
"./src/tests/setupFiles.js"
],
"setupTestFrameworkScriptFile": "./src/tests/setupFrameworks.js",
"testURL": "http://localhost/"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"dependencies": {
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.5.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^6.0.0",
"eslint-config-airbnb": "^18.0.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"husky": "^2.0.0",
"jest": "^22.1.4",
"lint-staged": "^9.0.0",
"prettier": "^1.10.2",
"webpack": "^4.6.0",
"webpack-cli": "^3.0.0",
"prop-types": "^15.6.0",
"react": "^16.8.3",
"react-dom": "^16.8.3"
}
}