-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.84 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
{
"name": "coffeescoreboard",
"version": "1.0.0",
"description": "Frontend for a scoreboard tracking who makes the most coffee for Abakus. (Student organization at NTNU, Trondheim)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "webpack",
"start": "webpack-dev-server --open --config webpack.config.js --port 8089",
"eslint": "eslint src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asmundh/coffeescoreboard-client.git"
},
"author": "asmundh",
"license": "ISC",
"bugs": {
"url": "https://github.com/asmundh/coffeescoreboard-client/issues"
},
"homepage": "https://github.com/asmundh/coffeescoreboard-client#readme",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"easyqrcodejs": "^3.8.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-pure-lifecycle": "^3.0.0",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"sanitize.css": "^11.0.1",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.10.0",
"@babel/preset-env": "^7.10.0",
"@babel/preset-react": "^7.10.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.14.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}