-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.6 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": "card-game-generator",
"version": "0.1.0",
"description": "A fun project to simulate various card game experiences.",
"main": "index.js",
"scripts": {
"start": "babel-node -r dotenv/config server --extensions .ts",
"test": "jest --watch",
"test:all": "jest --watchAll",
"test:coverage": "jest --coverage",
"try:codenames": "babel-node server/games/Codenames.ts --extensions .ts",
"lint": "eslint '**/*.{ts,vue}'"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"express": "^4.17.1",
"vue": "^2.6.12",
"vue-router": "^3.5.1",
"vuex": "^3.6.2",
"ws": "^7.4.5"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/node": "^7.14.2",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-export-namespace-from": "^7.14.2",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/user-event": "^13.1.9",
"@testing-library/vue": "^5.6.2",
"@types/express": "^4.17.11",
"@types/faker": "^5.5.5",
"@types/jest": "^26.0.23",
"@types/node": "^14.17.0",
"@types/webpack-env": "^1.16.0",
"@types/ws": "^7.4.4",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"axios": "^0.21.1",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.5",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.9.0",
"faker": "^5.5.3",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^0.6.3",
"prettier": "^2.3.0",
"ts-loader": "^9.2.2",
"typescript": "^4.2.4",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.7",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.37.1",
"webpack-dev-middleware": "^4.3.0",
"webpack-hot-middleware": "^2.25.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XxX-MLGNoob-XxX/card-game-generator.git"
},
"author": "xxx-mlgnoob-xxx",
"license": "MIT",
"bugs": {
"url": "https://github.com/XxX-MLGNoob-XxX/card-game-generator/issues"
},
"homepage": "https://github.com/XxX-MLGNoob-XxX/card-game-generator#readme"
}