-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.48 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
77
78
79
80
81
82
83
84
85
{
"name": "react-fp",
"version": "0.1.3",
"description": "pruedencss react component implementation",
"author": "joehannes",
"license": "MIT",
"repository": "prudencss/react-fp",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/dist/enums"
],
"dependencies": {
"classnames": "^2.2.6",
"mobile-device-detect": "^0.4.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-styleguidist": "^13.1.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@prudencss/icons-svg": "../icons-svg",
"@prudencss/scss": "../scss",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/classnames": "^2.2.10",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.4",
"@types/react": "18.0.22",
"@types/react-dom": "18.0.7",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/eslint-plugin-tslint": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@typescript-eslint/scope-manager": "^5.10.1",
"@typescript-eslint/typescript-estree": "^5.10.1",
"@typescript-eslint/utils": "^5.10.1",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^4.0.0",
"i": "^0.3.6",
"postcss": "^8.4.18",
"prettier": "^2.4.1",
"react-is": "^18.2.0",
"react-scripts": "5.0.1",
"sass": "^1.55.0",
"typedoc": "^0.23.18",
"typescript": "~4.8.4",
"webpack": "^5.0.0"
},
"peerDependencies": {},
"scripts": {
"clean": "rm -rf ./lib",
"prebuild": "yarn clean",
"build": "tsc --build \"./tsconfig.json\"",
"start": "yarn storybook",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"predeploy": "yarn build-storybook",
"deploy": "gh-pages -d storybook-static",
"fix-formatting": "prettier --write 'src/**/*.{ts,tsx}'",
"fix-lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}