-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "react-anchor-point",
"version": "0.1.2",
"description": "AnchorPoint is a simple react component that will help your users stay oriented with the content on your page",
"main": "./build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --mode development --watch",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MCTaylor17/react-anchor-point.git"
},
"author": "Mike C. Taylor",
"license": "MIT",
"bugs": {
"url": "https://github.com/MCTaylor17/react-anchor-point/issues"
},
"homepage": "https://github.com/MCTaylor17/react-anchor-point#readme",
"dependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"peerDependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2",
"prop-types": "^15.6.2"
}
}