-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1023 Bytes
/
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
{
"name": "react-spring-pop",
"version": "1.4.0",
"main": "dist/index.js",
"module": "dist/react-spring-pop.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"start": "tsdx watch --entry src/index.tsx",
"build": "tsdx build --entry src/index.tsx",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint",
"prepare": "tsdx build --entry src/index.tsx"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"husky": "^9.1.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsdx": "^0.14.1",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@alexvcasillas/use-observer": "^1.1.2",
"@react-spring/web": "^9.7.4",
"react": "^18.3.1"
}
}