-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.65 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
{
"name": "rust-regex-playground",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "parcel index.html -p 8080",
"setup": "husky install && husky add .husky/pre-commit \"npm run format\" && git add .husky/pre-commit",
"format": "prettier --write \"src/**/*.{ts,tsx,css,js,jsx,json,md}\"",
"precommit": "lint-staged --config .husky/pre-commit.js",
"build": "parcel build index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2fd/rust-regex-playground.git"
},
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/2fd/rust-regex-playground/issues"
},
"homepage": "https://github.com/2fd/rust-regex-playground#readme",
"devDependencies": {
"@types/react": "^18.2.70",
"@types/react-dom": "^18.2.22",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"parcel": "^2.12.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"process": "^0.11.10",
"tailwindcss": "^3.4.1",
"tsc-files": "^1.1.4",
"typescript": "^5.4.3"
},
"dependencies": {
"@heroicons/react": "^2.1.3",
"intl-messageformat": "^10.5.11",
"radash": "^12.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rregex1.0": "npm:[email protected]",
"rregex1.1": "npm:[email protected]",
"rregex1.10": "npm:[email protected]",
"rregex1.2": "npm:[email protected]",
"rregex1.3": "npm:[email protected]",
"rregex1.4": "npm:[email protected]",
"rregex1.5": "npm:[email protected]",
"rregex1.6": "npm:[email protected]",
"rregex1.7": "npm:[email protected]",
"rregex1.8": "npm:[email protected]",
"rregex1.9": "npm:[email protected]"
}
}