-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.73 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.73 KB
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
52
{
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.33.0",
"@types/jquery": "^3.5.32",
"@types/knockout": "^3.4.77",
"@types/node": "^24.2.0",
"@types/react": "^16.14.60",
"@types/react-dom": "^16.9.24",
"@types/requirejs": "^2.1.37",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"@typescript-eslint/typescript-estree": "^8.39.0",
"base64-inline-loader": "^2.0.1",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.33.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"file-loader": "^6.2.0",
"rimraf": "^3.0.2",
"sass": "^1.90.0",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"tfx-cli": "^0.21.1",
"ts-loader": "^9.5.2",
"typescript": "^5.9.2",
"vss-web-extension-sdk": "^5.141.0",
"webpack": "^5.101.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"name": "split",
"private": true,
"version": "0.0.0",
"dependencies": {
"azure-devops-ui": "^2.259.0",
"react": "~16.13.1",
"react-dom": "~16.13.1"
},
"scripts": {
"dev": "npm run build:dev && webpack-dev-server --hot --progress --static ./dist ",
"clean:vsix": "npx rimraf *.vsix",
"clean": "npm run clean:vsix && npx rimraf dist",
"build:dev": "npm run clean && webpack --progress",
"build:release": "npm run clean && webpack --config webpack.prod.config.js --progress",
"package:dev:web": "npm run clean:vsix && node ./package/packageDev",
"package:prod:web": "npm run clean:vsix && node ./package/packageProd",
"lint": "eslint scripts/ --ext .ts,.tsx",
"lint:fix": "eslint scripts/ --ext .ts,.tsx --fix"
}
}