-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.78 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
{
"name": "star-cats-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-ui": "webpack --config webpack.config.js",
"build-server": "webpack --config webpack.node.config.js",
"compile": "yarn build-ui && yarn build-server",
"deploy-compile": "export NODE_ENV=production && yarn compile",
"start": "node ./dist/server.js",
"dev": "yarn build-ui && nodemon --exec \"yarn build-server && node ./dist/server.js\" -e ts --watch server",
"dev-ui": "webpack-dev-server --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hario90/star-cats-api.git"
},
"author": "Lisa Harrylock",
"license": "ISC",
"bugs": {
"url": "https://github.com/hario90/star-cats-api/issues"
},
"homepage": "https://github.com/hario90/star-cats-api#readme",
"dependencies": {
"@types/axios": "^0.14.0",
"axios": "^0.21.0",
"circular-dependency-plugin": "^5.2.2",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.3",
"@types/uuid": "^8.3.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.6",
"prettier": "2.5.1",
"style-loader": "^2.0.0",
"ts-loader": "^9.3.1",
"typescript": "^4.1.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"webpack-node-externals": "^3.0.0"
}
}