-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.66 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.66 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "finallyreact",
"version": "1.14.6",
"description": "A simple and customizable design library for React, including a full set of component, style, and utility elements.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/machinellama/finallyreact"
},
"homepage": "https://helpful-squirrel-81be57.netlify.app",
"license": "MIT",
"scripts": {
"build": "npm run test && webpack",
"build:watch": "webpack --watch",
"test": "jest"
},
"author": {
"name": "machinellama"
},
"keywords": [
"react",
"design",
"library",
"javascript",
"typescript",
"components",
"modules"
],
"husky": {
"hooks": {
"pre-commit": [
"lint-staged"
]
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,sass}": [
"prettier --write"
]
},
"peerDependencies": {
"react": ">= 18.0.0",
"react-dom": ">= 18.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/react": "18.2.58",
"@types/react-dom": "18.2.19",
"autoprefixer": "^10.4.14",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"file-loader": "^6.2.0",
"husky": "4",
"jest": "^29.7.0",
"lint-staged": "10.5.4",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "2.2.1",
"sass": "1.71.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.1",
"ts-jest": "^29.1.0",
"ts-loader": "^9.5.1",
"tsc-alias": "1.8.8",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
}
}