This repository has been archived by the owner on May 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.97 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
{
"name": "server",
"version": "0.0.2",
"description": "",
"private": true,
"scripts": {
"test": "mocha || exit 1",
"start": "npm run build && DEBUG=slimonitor:* node dist/index.js",
"start-windows": "npm run build && set DEBUG=slimonitor:* && node dist/index.js",
"build": "webpack --progress && babel src -d dist",
"lint": "eslint src schema components reducers --ext js,jsx",
"pre-commit": "(npm run lint && npm test) || exit 1",
"hooks": "(echo '#!/bin/sh' && echo 'npm run pre-commit') > .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
"hooks-windows": "(echo #!/bin/sh && echo npm run pre-commit) > .git/hooks/pre-commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Slimonitor/server.git"
},
"author": "Eiren Rain, Robin Tail",
"license": "MIT",
"bugs": {
"url": "https://github.com/Slimonitor/server/issues"
},
"homepage": "https://github.com/Slimonitor/server#readme",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.3",
"babel-loader": "^8.0.4",
"body-parser": "^1.18.3",
"chart.js": "^2.7.3",
"connected-react-router": "^6.1.0",
"debug": "^4.1.1",
"express": "^4.16.4",
"fast-memory-cache": "^2.0.4",
"history": "^4.7.2",
"keymirror": "^0.1.1",
"mongoose": "^5.7.5",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-chartjs-2": "^2.7.4",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"redux": "^4.0.1",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@slimonitor/eslint-config": "git+https://github.com/Slimonitor/eslint-config.git",
"chai": "^4.2.0",
"eslint": "^5.11.0",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0"
}
}