-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.67 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
{
"name": "glin-profanity",
"version": "1.1.9",
"description": "Monorepo for Glin-Profanity packages",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "webpack serve --mode development",
"build": "lerna run build",
"publish": "lerna publish",
"prepare": "husky install",
"commit": "git-cz",
"lint": "eslint .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/GLINCKER/glin-profanity"
},
"keywords": [
"glin-profanity",
"glincker",
"glin",
"profanity"
],
"author": "gdsks",
"license": "ISC",
"dependencies": {
"glin-profanity": "^1.1.7",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "^22.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"gh": "^2.0.0",
"git-cz": "^4.9.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.3",
"jest": "^27.0.0",
"lerna": "^8.1.8",
"lint-staged": "^15.2.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}