-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
76 lines (76 loc) · 2.02 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "san-ssr-plugin",
"version": "2.0.0",
"description": "",
"main": "dist/plugin.js",
"scripts": {
"build": "gulp build -f ./gulpfile.ts && tsc --declaration --outDir dist/ --emitDeclarationOnly -p ./src",
"test": "jest",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/searchfe/san-ssr-plugin.git"
},
"author": "meixg",
"license": "ISC",
"dependencies": {
"de-indent": "^1.0.2",
"hash-sum": "^2.0.0"
},
"peerDependencies": {
"san-loader": "^0.3.4",
"san-ssr": ">1.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/eslint-parser": "^7.22.15",
"@babel/eslint-plugin": "^7.22.10",
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@ecomfe/eslint-config": "^7.5.1",
"@jest/types": "^29.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.4",
"@semantic-release/git": "^10.0.1",
"@types/gulp": "^4.0.13",
"@types/gulp-babel": "^6.1.30",
"@types/hash-sum": "^1.0.0",
"@types/jest": "^26.0.24",
"@types/webpack": "^4.41.33",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"babel-loader": "^8.3.0",
"css-loader": "^6.8.1",
"del": "^6.1.1",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.28.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"html-loader": "^4.2.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"less": "^3.13.1",
"less-loader": "^7.3.0",
"lint-staged": "^10.5.4",
"memfs": "^4.2.1",
"san": "~3.11.3",
"san-loader": "^0.3.7",
"san-ssr": "^3.13.3",
"semantic-release": "^21.1.1",
"semantic-release-cli": "^5.4.4",
"style-loader": "^2.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2"
}
}