This repository has been archived by the owner on Jun 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 2.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "scotty",
"version": "1.5.6",
"description": "WebSocket-enabled PDF viewer",
"main": "backend/index.js",
"engines": {
"node": "^12.16.1"
},
"scripts": {
"compile": "tsc",
"build": "npm run compile && webpack --config webpack.prod.js",
"dev": "npm run dev:front & npm run dev:server",
"dev:front": "webpack-dev-server --config webpack.dev.js",
"dev:server": "NODE_ENV=development nodemon",
"start": "node backend/dist/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raa-tools/scotty.git"
},
"keywords": [
"WebSocket",
"PDF"
],
"author": "JT",
"license": "MIT",
"bugs": {
"url": "https://github.com/raa-tools/scotty/issues"
},
"homepage": "https://github.com/raa-tools/scotty#readme",
"dependencies": {
"aws-sdk": "^2.814.0",
"axios": "^0.21.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"randomcolor": "^0.5.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.20",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"socket.io": "^2.4.0",
"socket.io-client": "^2.3.0",
"styled-components": "^5.0.1",
"uuid": "^7.0.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@hot-loader/react-dom": "^16.13.0",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.3",
"@types/node": "^13.9.2",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.3",
"@types/redux": "^3.6.0",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@types/styled-components": "^5.0.1",
"@types/uuid": "^7.0.2",
"@types/webpack": "^4.41.8",
"@types/webpack-dev-middleware": "^3.7.0",
"@types/webpack-env": "^1.15.1",
"@types/webpack-hot-middleware": "^2.25.0",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel": "^6.23.0",
"babel-loader": "^8.1.0",
"compression-webpack-plugin": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.1.2",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"terser-webpack-plugin": "^2.3.5",
"ts-loader": "^6.2.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": "eslint --cache --fix",
"*.tsx": "eslint --cache --fix"
}
}