-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·50 lines (50 loc) · 1.8 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
{
"name": "@vlazh/react-auth",
"version": "1.6.2",
"description": "React auth components",
"main": "index.js",
"types": "index.d.ts",
"author": "VZH",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vlazh/react-auth"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"clean": "rimraf dist/*",
"copy:configs": "copyfiles package.json README.md LICENSE .npmignore ./dist/",
"build": "npm run clean && tsc --project ./tsconfig.json",
"build-to-tutoron": "tsc --project ./tsconfig.json --outDir '/home/vladimir/dev/sources/tutoron/node_modules/@vlazh/react-auth/' && copyfiles package.json '/home/vladimir/dev/sources/tutoron/node_modules/@vlazh/react-auth/'",
"patch-publish": "npm run build && npm version patch && npm run copy:configs && npm publish ./dist/ && git push --follow-tags",
"minor-publish": "npm run build && npm version minor && npm run copy:configs && npm publish ./dist/ && git push --follow-tags"
},
"devDependencies": {
"@js-toolkit/configs": "^3.77.2",
"@types/react": "17.0.8",
"@types/react-router": "^5.1.14",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"@vlazh/route-utils": "^0.2.2",
"copyfiles": "^2.4.1",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"history": "^5.0.0",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-router": "^5.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.3.2"
},
"peerDependencies": {
"react": ">= 16.x"
}
}