-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.45 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
{
"private": true,
"workspaces": [
"docs",
"packages/*"
],
"license": "MIT",
"scripts": {
"dev:docs": "next dev ./docs",
"eslint": "eslint .",
"docgen": "ts-node ./scripts/api-docgen.ts",
"fake-data": "ts-node ./scripts/fake-data.ts",
"weather-data": "ts-node ./scripts/weather-data.ts",
"test": "jest --verbose",
"fix": "prettier --write .",
"lint": "prettier --check .",
"benchmark": "ts-node scripts/benchmark"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/react": "^12.0.0",
"@types/faker": "^5.5.5",
"@types/jest": "^27.0.1",
"@types/jest-image-snapshot": "^4.3.0",
"@types/node": "^16.0.0",
"@types/node-fetch": "^2.5.10",
"@types/prettier": "^2.2.3",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"babel-jest": "^27.0.2",
"esbuild": "^0.12.9",
"eslint": "^7.27.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^5.5.3",
"jest": "^27.0.5",
"jest-image-snapshot": "^4.5.1",
"node-fetch": "^2.6.1",
"prettier": "^2.3.0",
"puppeteer": "^10.0.0",
"react": "^17.0.2",
"react-docgen-typescript": "^2.0.0",
"react-dom": "^17.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"version": "0.0.0"
}