-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.29 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
{
"name": "@kappasigmamu/canary-component",
"version": "0.4.13-experimental",
"description": "React Component that renders the KappaSigmaMu Canary in 3D",
"keywords": [
"kusama",
"blockchain",
"polkadot",
"react",
"threejs",
"3d"
],
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KappaSigmaMu/canary-component.git"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@react-three/drei": "^9.99.0",
"@react-three/fiber": "^8.15.16",
"@react-three/postprocessing": "^2.16.0",
"@types/three": "^0.161.2",
"core-js": "^3.36.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.1.8",
"three": "^0.161.0"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "7.23.9",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.23.9",
"babel-eslint": "^10.1.0",
"eslint": "^8.56.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-webpack-plugin": "^4.0.1",
"react-scripts": "^5.0.1"
},
"scripts": {
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts --openssl-legacy-provider build",
"dist": "rm -rf dist && NODE_ENV=production babel src/lib public/assets --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.{js,jsx}\" --fix",
"lint": "eslint \"{src,apps,libs,test}/**/*.{js,jsx}\""
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"bugs": {
"url": "https://github.com/KappaSigmaMu/canary-component/issues"
},
"homepage": ".",
"author": "Vilson Vieira",
"license": "MIT"
}