-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.59 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
{
"name": "@softstack/easy-flex",
"version": "2.0.0-alpha.11",
"description": "",
"license": "MIT",
"author": "Softstack GmbH <[email protected]> (https://softstack.io)",
"repository": {
"type": "git",
"url": "https://github.com/softstackhq/joi-bigint"
},
"homepage": "https://github.com/softstackhq/joi-bigint#readme",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"clean_node_modules": "rm ./node_modules/react ./node_modules/react-dom ./node_modules/styled-components -rf",
"test": "jest",
"build": "tsc",
"prettier": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"prepare": "rm ./lib/* -rf && npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm test && npm run lint",
"version": "npm run prettier && git add -A src",
"postversion": "git push && git push --tags"
},
"peerDependencies": {
"react": "*",
"react-dom": "*",
"styled-components": ">=5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.4",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.16.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"jest-styled-components": "^7.0.8",
"prettier": "^2.6.2",
"ts-jest": "^28.0.5",
"typescript": "^4.6.4"
}
}