-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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": "leet-code",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --maxWorkers 2",
"test:watch": "jest --watch",
"test:ssr": "jest --maxWorkers 2 --config ./jest.config.node.ts",
"test:coverage": "jest --coverage",
"lint": "eslint \"{code,tests,stories}/**/*.{ts,js}\"",
"lint:fix": "npm run lint --fix",
"lint:types": "tsc --noEmit",
"dev": "modern dev",
"build": "modern build",
"preview": "modern preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javaSwing/leet-code.git"
},
"author": "javaswing",
"license": "ISC",
"bugs": {
"url": "https://github.com/javaSwing/leet-code/issues"
},
"homepage": "https://github.com/javaSwing/leet-code#readme",
"devDependencies": {
"@babel/core": "^7.22.5",
"@types/jest": "^29.0.3",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"babel-jest": "^29.5.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-mdx": "^2.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3",
"prettier": "2.8.8",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.5.3",
"typescript": "^4.8.3"
},
"dependencies": {
"@modern-js/doc-tools": "^2.25.1",
"tailwindcss": "^3.2.7"
}
}