-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 790 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 790 Bytes
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
{
"name": "isolate-react-examples",
"version": "2.0.0",
"repository": "https://github.com/davidmfoley/isolate-react",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "davidmfoley@gmail.com",
"license": "MIT",
"private": true,
"files": [
"lib/**/*"
],
"scripts": {
"examples": "jest",
"examples:watch": "jest --watch",
"prettier": "prettier -c './**/*.{ts,tsx}'",
"fix:prettier": "prettier --write './**/*.{ts,tsx}'",
"ci": "yarn examples && yarn prettier"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/react": "^17.0.39",
"isolate-react": "^2.3.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"react": "^18.0.0",
"ts-jest": "^27.1.2",
"typescript": "^4.5.5"
}
}