-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
65 lines (65 loc) · 1.98 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
{
"name": "react-multi-email",
"version": "1.0.25",
"jsnext:main": "dist/es6/index.js",
"module": "dist/es6/index.js",
"main": "dist/commonjs/index.js",
"repository": "https://github.com/axisj/react-multi-email",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build:common": "ncp react-multi-email/style.css ./dist/style.css",
"build:es5": "rimraf ./dist/commonjs && tsc --p tsconfigs/tsconfig.es5.json",
"build:es6": "rimraf ./dist/es6 && tsc --p tsconfigs/tsconfig.es6.json",
"build:library": "npm run build:common && npm run build:es5 && npm run build:es6",
"prepublishOnly": "npm run build:library",
"test": "jest"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@emotion/styled": "^11.10.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.5.2",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"antd": "^4.22.8",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.0.1",
"less": "^4.1.3",
"ncp": "^2.0.0",
"next": "^12.2.5",
"next-with-less": "^2.0.5",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.1",
"typescript": "^4.8.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}