-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.63 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": "ts-leetcode",
"version": "1.0.0",
"description": "typescript+jest 搭建的力扣和前端工具方法实现",
"main": "index.ts",
"scripts": {
"dev": "webpack-dev-server --mode=development --config ./build/webpack.config.js",
"build": "webpack --mode=production --config ./build/webpack.config.js",
"test": "jest",
"test:help": "jest --help",
"test:debug": "jest --debug",
"test:verbose": "jest --verbose",
"test:init": "jest --init",
"test:json": "jest --json",
"test:exportJson": "jest --json --outputFile=./export/reporter.json",
"test:coverage": "jest --coverage",
"test:watchAll": "jest --watchAll",
"pretty": "prettier --config .prettierrc \"code/**/*.ts\" --write",
"pretty-watch": "onchange \"code/**/*.ts\" -- prettier --write {{changed}}",
"git:pull": "pull",
"git:push": "push"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.4",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"onchange": "^7.1.0",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0"
}
}