-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.62 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
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-interactive-guide",
"version": "4.0.2",
"description": "Interactive tour guide for your react app",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"scripts": {
"test": "echo \"run tests\"",
"dev": "parcel examples/index.html -d build",
"clean": "rimraf dist",
"build": "microbundle -f es,cjs",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"tsc": "tsc",
"lint:fix": "eslint --fix 'src/**/*.{js,ts,tsx}'",
"pretty": "prettier --write 'src/**/*.{js,ts,tsx}'",
"release": "yarn lint:fix && yarn pretty && yarn build && yarn publish"
},
"keywords": [
"react",
"react-component",
"hooks",
"react-hooks",
"tour",
"guide",
"tutorial"
],
"author": "Dominic Lee",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dominictwlee/react-interactive-guide.git"
},
"files": [
"dist"
],
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-is": "^16.13.1",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/lodash.throttle": "^4.1.6",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/styled-components": "^5.0.1",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"eslint": "6.x",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"husky": "^4.2.3",
"lint-staged": "^10.1.7",
"microbundle": "^0.11.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.4",
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0",
"react-is": "^16.13.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.6",
"styled-components": "^5.1.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@popperjs/core": "^2.1.0",
"lodash.throttle": "^4.1.1",
"react-spring": "^8.0.27"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}