-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.47 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
{
"name": "haqr",
"version": "2.0.0",
"description": "A modular QR system for event management",
"private": true,
"main": "server.js",
"scripts": {
"build-dev": "npm run clean; webpack --inline --progress --color --config config/webpack.dev.config.js",
"build": "npm run clean; webpack --inline --progress --color --config config/webpack.prod.config.js",
"start-dev": "npm run build-dev; node server.js",
"start": "npm run build; node server.js",
"clean": "rm dist/*",
"test-b": "mocha test/backend/unit",
"test-i": "mocha test/backend/integration --timeout 60000",
"test-c": "nyc mocha test/backend/ --recursive --timeout 10000",
"test-f": "mocha test/frontend",
"test": "npm run test-b; npm run test-i;"
},
"license": "MIT",
"_moduleAliases": {
"@": "./",
"@b": "./src/backend",
"@f": "./src/frontend",
"@t": "./test"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"css-loader": "^1.0.1",
"faker": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"mocha": "^7.1.1",
"mongodb-memory-server": "^6.4.1",
"node-sass": "^4.13.1",
"nyc": "^15.0.0",
"proxyquire": "^2.1.0",
"sass-loader": "^7.1.0",
"sinon": "^7.3.2",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^2.3.0",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"@hapi/joi": "^16.1.7",
"axios": "^0.19.0",
"body-parser": "^1.18.3",
"bootstrap": "^4.4.1",
"chalk": "^2.4.1",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"insert-text-at-cursor": "^0.3.0",
"jquery": "^3.4.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.0",
"mongoose": "^5.7.7",
"popper.js": "^1.16.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-modal": "^3.10.1",
"react-qr-reader": "^2.2.1",
"react-redux": "^7.1.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
}
}