-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.4 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
{
"name": "react-u5auth",
"version": "0.1.7",
"description": "React components to authenticate via U5auth (OAuth2)",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist --source-maps",
"build:watch": "npm run build -- --watch",
"prepublish": "npm run clean && npm run build",
"clean": "rimraf dist",
"test": "echo \"Error: no test specified\" && exit 1",
"sample": "webpack-dev-server --port 3001 --config ./sample/webpack.config.js"
},
"author": "Chris Oloff <chris@uber5.com> (http://about.uber5.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Uber5/react-u5auth.git"
},
"dependencies": {},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"prop-types": "^15.0.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rimraf": "2.5.4",
"source-map-support": "0.4.5",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}