-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.38 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.38 KB
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
{
"name": "rctf",
"license": "BSD-3-Clause",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint .",
"typecheck": "tsc -b packages",
"build": "yarn workspaces foreach -Apt run build",
"dev": "concurrently -k -t \"HH:mm:ss.SSS\" -p \"[{time}]\" -c \"cyan,green,blue\" \"yarn workspace @rctf/client dev\" \"yarn workspace @rctf/server watch-server\" \"yarn workspace @rctf/server watch-ts --preserveWatchOutput\"",
"test": "jest",
"test:report": "yarn test --coverage",
"packall": "yarn workspaces foreach -Apt exec yarn pack",
"postinstall": "husky install"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@types/jest": "27.0.2",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@typescript-eslint/parser": "5.2.0",
"babel-plugin-const-enum": "1.1.0",
"concurrently": "6.3.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-jsx": "10.0.0",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "25.2.2",
"eslint-plugin-jest-dom": "3.9.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.1.1",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "5.0.0",
"husky": "7.0.4",
"jest": "27.3.1",
"lint-staged": "11.2.6",
"nodemon": "2.0.14",
"prettier": "2.4.1",
"typescript": "4.4.4"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "avoid"
},
"description": "rCTF is redpwnCTF's CTF platform. It is developed and maintained by the [redpwn](https://redpwn.net) CTF team.",
"repository": {
"type": "git",
"url": "git+https://github.com/redpwn/rctf.git"
},
"author": "redpwn <contact@redpwn.net>",
"bugs": {
"url": "https://github.com/redpwn/rctf/issues"
},
"homepage": "https://rctf.redpwn.net",
"resolutions": {
"json-schema": "^0.4.0",
"loader-utils": "^1.4.1"
},
"packageManager": "yarn@4.9.2"
}