-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.77 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "demo.typing-biometrics-auth",
"version": "1.1.0",
"description": "This demo is to showcase an authentication strategy using AI-based typing biometrics.",
"main": "server/index.js",
"engines": {
"node": "~10.16.3",
"npm": "~6.9.0"
},
"scripts": {
"lint:app": "eslint app",
"lint:server": "eslint server",
"lint": "npm run lint:app && npm run lint:server",
"start": "node ./server/index.js",
"postinstall": "npm run build",
"nodemon": "nodemon ./server/index.js",
"watch": "webpack --config webpack.dev.js --watch --progress",
"build": "npm run lint && webpack --config webpack.prod.js --progress",
"dev": "concurrently \"npm run nodemon\" \"npm run watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ohpyupi/demo.typing-biometrics-auth.git"
},
"author": "ohpyupi@gmail.com",
"contributors": [
{
"name": "Hoseong Lee",
"email": "ohpyupi@gmail.com",
"url": "https://github.com/ohpyupi"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ohpyupi/demo.typing-biometrics-auth/issues"
},
"homepage": "https://github.com/ohpyupi/demo.typing-biometrics-auth#readme",
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@graphql-tools/graphql-file-loader": "^6.0.8",
"@graphql-tools/load": "^6.0.8",
"@graphql-tools/schema": "^6.0.8",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-context": "^1.0.20",
"apollo-link-http": "^1.5.17",
"apollo-server-express": "^2.14.2",
"axios": "^0.19.2",
"body-parser": "^1.17.2",
"bulma": "^0.6.2",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"googleapis": "^55.0.0",
"graphql-tag": "^2.10.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"mongoose": "^5.9.22",
"morgan": "^1.8.2",
"nodemailer": "^6.4.10",
"prop-types": "^15.7.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-core": "^6.25.0",
"babel-loader": "^8.0.0",
"chai": "^4.1.2",
"concurrently": "^3.5.0",
"css-loader": "^0.28.4",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"html-loader": "^0.4.5",
"node-sass": "^4.14.1",
"nodemon": "^1.11.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^1.1.6",
"url-loader": "^0.5.9",
"webpack": "^4.0.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.1.1"
}
}