-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
107 lines (107 loc) · 2.69 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
98
99
100
101
102
103
104
105
106
107
{
"name": "threejs-weather",
"version": "1.0.0",
"description": "threejs-weather",
"keywords": [
"react",
"tree",
"weather"
],
"license": "MIT",
"repository": {
"url": "https://github.com/JiangWeixian/threejs-weather",
"type": "git"
},
"author": "JW",
"files": [
"es",
"lib"
],
"main": "lib/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"clean": "rimraf es && rimraf lib",
"dev": "pnpm run dev --prefix example",
"lint:fix": "eslint . --fix",
"release": "pnpm run build && pnpm changeset publish",
"build": "pnpm run clean && cross-env NODE_ENV=production gulp compile",
"build:dev": "pnpm run clean && cross-env NODE_ENV=development gulp compile"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/**/*.{js,ts,tsx,vue,json}": [
"eslint --fix"
]
},
"peerDependencies": {
"@react-three/fiber": ">=7.5.0",
"three": ">=0.125.2"
},
"dependencies": {
"@react-spring/core": "^9.2.4",
"@react-spring/three": "^9.2.4",
"three.meshline": "^1.3.0",
"threejs-meshline": "2.0.12"
},
"devDependencies": {
"@aiou/eslint-config": "^0.2.1",
"@babel/core": "7.15.0",
"@babel/plugin-transform-typescript": "7.15.0",
"@babel/preset-env": "7.15.0",
"@babel/preset-react": "7.14.5",
"@changesets/cli": "^2.16.0",
"@react-three/drei": "^7.6.1",
"@react-three/fiber": "^7.0.6",
"@testing-library/react-hooks": "3.2.1",
"@types/classnames": "2.2.9",
"@types/enzyme-adapter-react-16": "1.0.5",
"@types/lodash.isnull": "3.0.6",
"@types/react": "17.0.19",
"@types/react-dom": "17.0.9",
"autoprefixer": "10.3.2",
"babel-plugin-import": "1.13.3",
"core-js": "3.16.2",
"cross-env": "7.0.3",
"cz-emoji": "^1.3.1",
"debug": "4.3.2",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"eslint": "^7.32.0",
"fs-extra": "10.0.0",
"gulp": "4.0.2",
"gulp-babel": "8.0.0",
"gulp-replace": "1.1.3",
"gulp-sourcemaps": "3.0.0",
"gulp-typescript": "5.0.1",
"husky": "~3.1.0",
"jest": "24.9.0",
"lint-staged": "^11.1.2",
"lodash.assign": "4.2.0",
"merge2": "1.4.1",
"np": "5.0.3",
"postcss-modules": "4.2.2",
"poststylus": "1.0.1",
"prettier": "2.3.2",
"pretty-quick": "2.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"three": "^0.125.2",
"through2": "4.0.2",
"ts-jest": "24.2.0",
"ts-loader": "9.2.5",
"tslib": "2.3.1",
"typescript": "4.3.5"
},
"config": {
"commitizen": {
"path": "cz-emoji"
}
}
}