-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "typeracer-cli",
"version": "2.0.1",
"description": "Typing practice from your terminal and features like online competition.",
"main": "dist/index.js",
"bin": {
"typerace": "dist/index.js"
},
"scripts": {
"build": "gulp && node dist/index.js",
"test": "mocha --no-deprecation --timeout 10000 --require ts-node/register **/*.spec.ts",
"dev": "nodemon --no-deprecation --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/online/app.ts",
"lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"start": "gulp && node dist/online/app.js"
},
"keywords": [
"typeracer",
"typeracer-cli",
"typing-competition",
"competition"
],
"repository": {
"type": "git",
"url": "git+https://github.com/p-society/typeracer-cli"
},
"author": "Kautilya Tripathi <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^10.12.12",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.2.0",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"nodemon": "^1.18.7",
"sinon": "^7.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
},
"dependencies": {
"chalk": "^2.4.1",
"cli-table2": "^0.2.0",
"commander": "^2.15.1",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"figlet": "^1.2.1",
"gulp": "^4.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^5.0.0",
"inquirer": "^5.2.0",
"log-update": "^2.3.0",
"mongoose": "^5.1.0",
"socket.io": "^2.1.0",
"socket.io-client": "^2.1.0"
}
}