forked from tim-soft/react-particles-webgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 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
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "react-native-particles-webgl",
"version": "1.2.1",
"description": "A 2D/3D particle library built on react-native, react-native-web, Three.js and WebGL",
"author": "Tim Ellenberger <[email protected]>",
"license": "MIT",
"repository": "flyskywhy/react-native-particles-webgl",
"bugs": {
"url": "https://github.com/flyskywhy/react-native-particles-webgl/issues"
},
"homepage": "https://timellenberger.com/particles",
"keywords": [
"react",
"react-native",
"react-native-web",
"fiber",
"three",
"particle",
"3D",
"canvas"
],
"main": "src/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cd example && yarn test",
"build": "rollup -c",
"start": "rollup -c -w",
"predeploy": "cd example && yarn install && yarn run build",
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,md}": [
"prettier --write",
"git add --force"
],
"*.{js, jsx}": [
"prettier --write",
"eslint --no-ignore --fix",
"git add --force"
]
},
"peerDependencies": {
"prop-types": ">=15.5.4",
"react": ">=16.8",
"react-dom": ">=16.8",
"three": ">=0.100"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "10.0.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.8",
"lint-staged": "^9.4.1",
"prettier": "^1.18.2",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"rollup": "^1.22.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.0",
"rollup-plugin-node-resolve": "^5.2.0",
"three": "^0.120.1"
},
"files": [
"src"
],
"dependencies": {
"expo-three-orbit-controls": "^2.0.0",
"hex-rgb": "^4.1.0",
"is-hexcolor": "^1.0.0",
"lodash.merge": "^4.6.2",
"react-three-fiber": "^5.0.1"
}
}