-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "@engineerapart/authentication",
"version": "0.0.7",
"description": "authentication libraries for Node",
"main": "dist/authentication-server.js",
"module": "dist/authentication-client.js",
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf dist",
"build": "NODE_ENV=production rollup -c",
"build:dev": "NODE_ENV=development rollup -c"
},
"repository": {
"type": "git",
"url": "[email protected]:engineerapart/authentication.git"
},
"author": "Barry Steyn",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"core-js": "^2.6.5",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"rmraf": "^1.0.3",
"rollup": "^1.2.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^4.0.4"
},
"dependencies": {
"passport-google-oauth20": "^2.0.0",
"js-cookie": "^2.2.0",
"next-cookies": "^1.1.2",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
}
}