-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.74 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
{
"name": "webauthn",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"dev:server": "nodemon server/index.js",
"build": "webpack --mode production",
"start": "npm run build && node server/index.js"
},
"keywords": [],
"author": "Toni Jukica",
"license": "MIT",
"dependencies": {
"@lapo/asn1js": "^1.1.0",
"axios": "^0.21.1",
"babel-polyfill": "^6.26.0",
"base64url": "^3.0.1",
"cbor": "^5.0.2",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"elliptic": "^6.5.2",
"express": "^4.17.1",
"jsrsasign": "^8.0.15",
"mongodb": "^3.5.5",
"mongoose": "^5.9.7",
"node-rsa": "^1.0.8",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.0.4",
"nodemon": "^2.0.2",
"style-loader": "^1.1.3",
"url-loader": "^4.0.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"nodemonConfig": {
"ignore": [
"client/*",
"node_modules/*"
],
"watch": [
"server/*"
]
}
}