-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
71 lines (71 loc) · 2.21 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
{
"name": "rocket-cp",
"version": "1.0.0",
"description": "<p align=\"center\"><img src=\"https://media0.giphy.com/media/f6hnhHkks8bk4jwjh3/giphy.gif\" align=\"center\" width=\"200\"></p> <h1 align=\"center\">Rocket Competitive Programming</h1>",
"main": "src/app.js",
"bin": {
"rktcp": "./src/app.js"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"prepare": "husky install",
"devStart": "nodemon src/server.js",
"start": "node src/app.js",
"lint": "prettier --check .",
"format": "./node_modules/.bin/eslint . --fix",
"husky-talisman": "husky-talisman",
"test": "jest",
"staged-fmt": "git diff --name-only --cached -- '***.js' | xargs prettier --write"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"semi": true,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"parser": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaushik-rishi/rocketcp.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kaushik-rishi/rocketcp/issues"
},
"homepage": "https://github.com/kaushik-rishi/rocketcp#readme",
"dependencies": {
"argparse": "^2.0.1",
"chalk": "^2.4.2",
"child_process": "^1.0.2",
"chokidar": "^3.5.1",
"cluster": "^0.7.7",
"ejs": "^3.1.6",
"express": "^4.17.1",
"fast-diff": "^1.2.0",
"find-free-port": "^2.0.0",
"joi": "^17.4.0",
"mkdirp": "^1.0.4",
"open": "^8.0.5",
"ora": "^5.4.0",
"protocol-registry": "^1.3.4",
"shelljs": "^0.8.4",
"url-parse": "^1.5.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^5.1.3",
"husky-talisman": "^2.0.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "2.2.1"
}
}