generated from tlibjs/package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.34 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
{
"private": true,
"description": "react in rust",
"license": "MIT",
"keywords": [
"rust",
"ui",
"frontend",
"react"
],
"author": "EqualMa <[email protected]> (https://github.com/EqualMa)",
"repository": "https://github.com/frender-rs/frender.git",
"scripts": {
"test": "jest",
"lint:fix": "eslint --cache --max-warnings 0 --fix",
"ensure-linted": "eslint --max-warnings 0 .",
"build": "yarn run clean && rollup -c",
"clean": "rimraf dist",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@google/semantic-release-replace-plugin": "^1.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-jest": "^27.3.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"core-js": "^3.19.0",
"tslib": "^2.3.1"
}
}