-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.04 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
{
"name": "test",
"version": "1.0.0",
"engines": {
"node": "14.x"
},
"description": "",
"main": "dist/main.js",
"scripts": {
"build-client": "npx webpack --config webpack.client.config.js",
"build-server": "tsc -p tsconfig.server.json",
"setup-env": "node -r dotenv/config genfiles_server/server/prestart.js",
"build": "npm run build-client && npm run build-server && npm run setup-env",
"start": "node -r dotenv/config genfiles_server/server/main.js",
"start:client-inc": "npm run build-client && npm run start",
"start:full": "npm run build && npm run start",
"test": "jest",
"coverage": "jest --coverage",
"count": "find src -regextype sed -regex '.*/*\\.tsx\\?' | xargs wc -l"
},
"_moduleAliases": {
"_server": "genfiles_server/server",
"_common": "genfiles_server/common"
},
"author": "",
"license": "ISC",
"prettier": {
"singleQuote": true,
"bracketSpacing": false
},
"devDependencies": {
"@testing-library/react": "^11.2.5",
"@types/body-parser": "^1.19.0",
"@types/connect-ensure-login": "^0.1.5",
"@types/deep-equal": "^1.0.1",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/jest": "^26.0.20",
"@types/mock-fs": "^4.13.0",
"@types/module-alias": "^2.0.0",
"@types/multer": "^1.4.5",
"@types/passport": "^1.0.6",
"@types/passport-local": "^1.0.33",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/socket.io": "^2.1.13",
"@types/socket.io-client": "^1.4.35",
"@types/split.js": "^1.6.0",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^7.1.2",
"eslint": "^7.21.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.2.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"mock-fs": "^4.13.0",
"prettier": "2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hot-toast": "^1.0.2",
"socket.io-client": "^3.1.2",
"supertest": "^6.1.3",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"typescript": "^4.2.2",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"@google-cloud/storage": "^5.8.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"connect-ensure-login": "^0.1.1",
"deep-equal": "^2.0.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-static-gzip": "^2.1.1",
"module-alias": "^2.2.2",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"socket.io": "^3.1.2",
"split.js": "^1.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test -- -o",
"post-merge": "npm install"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,css}": "prettier --write"
}
}