-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "coding-test",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": {
"name": "April Mintac Pineda",
"url": "https://aprilmintacpineda.github.io/"
},
"scripts": {
"ts-check": "tsc --noEmit",
"eslint": "eslint . --fix",
"prettier": "prettier . --write",
"lint": "npm run prettier && npm run eslint",
"postinstall": "npx yarn-deduplicate yarn.lock && husky install",
"kv-db": "ts-node --project tsconfig.json --files src/kv-database/index.ts",
"can-singer-sing-song": "ts-node --project tsconfig.json --files src/can-singer-sing-song/test.ts"
},
"dependencies": {
"chalk": "4.x",
"prompt-sync": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@types/node": "^18.11.18",
"@types/prompt-sync": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@typescript-eslint/typescript-estree": "^5.48.2",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.32.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-module-resolver": "^1.5.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.js|*.jsx|*.ts|*.tsx|*.json": [
"prettier --write"
],
"*.js|*.jsx|*.ts|*.tsx": [
"eslint --fix"
]
}
}