-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "french-gender-game",
"engines": {
"node": "^14.16 || >=16.0.0"
},
"type": "module",
"version": "1.0.3",
"description": "",
"exports": "./src/index.ts",
"bin": {
"@yourname/french-gender-game": "build/index.js",
"french-gender-game": "build/index.js"
},
"scripts": {
"build": "rimraf ./build && tsc && chmod +x ./build/index.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier:format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"start": "pnpm run build && node build/index.js",
"start:dev": "npx nodemon",
"test": "jest --config ./jest.config.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.4.3",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.35.0",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"chalk": "4.1.2",
"inquirer": "^9.1.4",
"yargs": "^17.7.1"
}
}