-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "terminal-typist",
"description": "Test your typing speed right from your terminal",
"version": "1.0.5",
"main": "./build/src/index.js",
"author": "Thomas Clark <thomas.clark@bigtincan.com>",
"license": "MIT",
"scripts": {
"start": "node build/src/index.js",
"start:dev": "NODE_ENV=development nodemon --watch 'src/**' -e ts,tsx --no-stdin --exec ts-node src/index.tsx -- ",
"build": "tsc --project tsconfig.json && tsconfig-replace-paths --project tsconfig.json && chmod +x build/src/index.js"
},
"bin": {
"tertyp": "build/src/index.js",
"terminal-typist": "build/src/index.js"
},
"dependencies": {
"@mobily/ts-belt": "^3.11.0",
"ahooks": "^3.3.12",
"chalk": "4.1.2",
"dotenv-flow": "^3.2.0",
"gradient-string": "^2.0.1",
"ink": "^3.2.0",
"ink-text-input": "^4.0.3",
"jotai": "^1.6.7",
"meow": "9.0.0",
"node": "^17.7.2",
"random-words": "^1.1.2",
"react": "^18.1.0",
"ts-node": "^10.8.0",
"zod": "^3.17.2"
},
"devDependencies": {
"@types/dotenv-flow": "^3.2.0",
"@types/gradient-string": "^1.1.2",
"@types/random-words": "^1.1.2",
"@types/react": "^18.0.9",
"nodemon": "^2.0.16",
"tsconfig-paths": "^4.0.0",
"tsconfig-replace-paths": "^0.0.11",
"type-fest": "^2.12.2",
"typescript": "^4.7.1-rc"
},
"resolutions": {
"react": "^18.1.0"
}
}