-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.57 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
{
"version": "0.1.3",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"homepage": "https://github.com/van123helsing/react-holo-card-effect",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "run-s build:npm",
"build:npm": "microbundle-crl --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "echo 'tests disabled'",
"testx": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"version-bump": "npm version patch && git push && git push --tags",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"pretty-quick": "pretty-quick --staged",
"npm-check": "npm-check --production --ignore '@react-spring/web'",
"precommit": "yarn run pretty-quick && yarn run npm-check"
},
"peerDependencies": {
"react": ">=16"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-holo-card-effect",
"module": "dist/react-holo-card-effect.esm.js",
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.2.4",
"@types/node": "18.11.17",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"babel-eslint": "10.1.0",
"cross-env": "7.0.3",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-config-standard-react": "13.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-standard": "4.1.0",
"gh-pages": "4.0.0",
"jsdoc": "4.0.0",
"microbundle-crl": "0.13.11",
"npm-check": "6.0.1",
"npm-run-all": "4.1.5",
"postcss-flexbugs-fixes": "5.0.2",
"prettier": "2.8.1",
"pretty-quick": "3.1.3",
"prop-types": "15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.5.0",
"react-scripts": "5.0.1",
"typescript": "^4.9.5"
},
"dependencies": {
"react-parallax-tilt": "^1.7.98",
"styled-components": "^5.3.6"
}
}