-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.89 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
{
"name": "awful-drawful",
"version": "1.0.0",
"description": "Clone of Drawful",
"main": "packages/server/src/index",
"scripts": {
"client:tsc": "tsc --project packages/client --noEmit",
"client:dev": "vite serve packages/client",
"client:serve": "vite preview packages/client",
"client:build": "npm run client:tsc && vite build packages/client",
"server:tsc": "tsc --project packages/server --noEmit",
"server:dev": "ENV=development nodemon -r esbuild-register -r dotenv/config --watch packages/server/src/index.ts",
"lint": "eslint . && npm run client:tsc && npm run server:tsc",
"test": "npm run test:unit",
"test:unit": "jest --verbose packages",
"test:unit:watch": "npm run test:unit -- --watch",
"test:integration": "cypress open",
"build": "VITE_BUILD_ID=$(date -u) npm run client:build",
"start": "DEBUG=app* node -r esbuild-register packages/server/src/index.ts"
},
"dependencies": {
"bootstrap": "^4.6.0",
"bootstrap-vue": "^2.21.2",
"connect-redis": "^6.0.0",
"crypto-random-string": "^3.3.0",
"debug": "^4.2.0",
"dotenv": "^8.2.0",
"esbuild-register": "^2.6.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"express-session": "^1.17.1",
"fabric": "^4.4.0",
"gsap": "^3.6.1",
"ioredis": "^4.27.6",
"nodemon": "^2.0.4",
"serve-static": "^1.14.1",
"socket.io": "^2.4.1",
"source-map-support": "^0.5.19",
"vite-plugin-vue2": "^1.5.1",
"vue": "^2.6.12",
"vue-class-component": "^7.2.6",
"vue-socket.io-extended": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.13.0",
"@tsconfig/node14": "^1.0.0",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.12",
"@types/express-http-proxy": "^1.6.1",
"@types/express-session": "^1.17.3",
"@types/fabric": "^4.2.6",
"@types/ioredis": "^4.26.4",
"@types/jest": "^26.0.23",
"@types/socket.io": "^2.1.13",
"@types/source-map-support": "^0.5.3",
"@vue/compiler-sfc": "^3.0.5",
"babel-jest": "^26.5.2",
"cypress": "^5.4.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-vue": "^7.1.0",
"jest": "^26.5.3",
"prettier": "^2.1.2",
"typescript": "^4.1.3",
"vite": "^2.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saffron-lockdown/awful-drawful.git"
},
"author": "weizhongtan, tjperr",
"license": "MIT",
"bugs": {
"url": "https://github.com/saffron-lockdown/awful-drawful/issues"
},
"homepage": "https://github.com/saffron-lockdown/awful-drawful#readme",
"jest": {
"transform": {
"^.+\\.tsx?$": "babel-jest"
}
}
}