This repository has been archived by the owner on May 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
109 lines (109 loc) · 3.38 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
108
109
{
"name": "renature",
"version": "0.11.1",
"description": "A physics-based animation library for React inspired by the natural world.",
"repository": "https://www.github.com/FormidableLabs/renature",
"bugs": {
"url": "https://github.com/FormidableLabs/renature/issues"
},
"homepage": "https://formidable.com/open-source/renature",
"main": "dist/cjs/renature.js",
"module": "dist/esm/renature.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"clean:res": "bsb -clean-world",
"build:res": "bsb -make-world",
"start:res": "bsb -make-world -w",
"check:ts": "tsc --noEmit",
"build": "rollup -c rollup.config.js",
"clean": "rimraf ./dist ./node_modules/.cache",
"format": "prettier --write src/**/*.ts stories/**/*.tsx __tests__/**/*.spec.ts",
"lint": "eslint . --ext .ts,.tsx",
"preversion": "run-s clean:res clean build:res check:ts lint test build",
"storybook": "start-storybook -p 6006",
"test": "jest"
},
"keywords": [
"TypeScript",
"ReScript",
"React",
"Animation",
"Physics"
],
"author": "Parker Ziegler <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/plugin-transform-object-assign": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.10.1",
"@glennsl/bs-jest": "^0.5.1",
"@rollup/plugin-buble": "^0.21.0",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^2.3.0",
"@storybook/addon-knobs": "^6.1.21",
"@storybook/addons": "^6.1.21",
"@storybook/react": "^6.1.21",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^5.1.0",
"@types/jest": "^26.0.13",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-jest": "^26.3.0",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^9.1.2",
"bs-platform": "^8.3.3",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.2.0",
"gentype": "^3.38.0",
"jest": "^26.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0",
"rollup": "^1.29.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"jest": {
"testMatch": [
"<rootDir>/__tests__/**/*_test.bs.js",
"<rootDir>/__tests__/**/*.spec.ts?(x)"
],
"transform": {
"^.+\\.jsx?$": "<rootDir>/scripts/jest-transform-esm.js",
"^.+\\.tsx?$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(@glennsl/bs-jest|bs-platform)/)"
],
"coveragePathIgnorePatterns": [
".gen.tsx",
"/__tests__/test-utils"
],
"setupFilesAfterEnv": [
"<rootDir>/setupTests.ts"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
}
}