-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "leetcode-problems",
"version": "1.0.0",
"description": "Ruixe 的 LeetCode 算法题集,使用 TypeScript 语言,集成 Jest 单元测试",
"type": "module",
"module": "esnext",
"engines": {
"node": ">=14.16"
},
"scripts": {
"create-files": "ts-node --esm ./creator/index.ts",
"test": "jest"
},
"keywords": [
"LeetCode",
"TypeScript",
"UnitTest"
],
"author": "RuixeWolf",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/ejs": "^3.1.1",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.2.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"babel-plugin-transform-import-meta": "^2.2.0",
"ejs": "^3.1.8",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"inquirer": "^9.1.4",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "*"
}
}