-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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
{
"name": "data-accessor",
"version": "10.0.0",
"description": "Simple data access layer for the frontend.",
"main": "dist/index.js",
"types": "src/index.tsx",
"repository": "[email protected]:nate-wilkins/data-accessor.git",
"license": "Apache-2.0",
"scripts": {
"build": "rm -rf ./dist/ && rm -f ./node_modules/parse5/dist/index.d.ts && ts-node ./node_modules/webpack/bin/webpack",
"test:lint": "yarn eslint --ext .jsx,.js,.ts,.tsx ./",
"test": "yarn jest --coverage && yarn test:lint"
},
"dependencies": {},
"devDependencies": {
"@testing-library/react": "13.4.0",
"@types/circular-dependency-plugin": "5.0.5",
"@types/jest": "29.4.0",
"@types/react": "18.0.28",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"circular-dependency-plugin": "5.2.2",
"eslint": "8.34.0",
"eslint-plugin-bdd": "2.1.1",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-jsort": "1.1.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-testing-library": "5.10.0",
"jest": "29.4.2",
"jest-date-mock": "1.0.8",
"jest-environment-jsdom": "29.4.2",
"np": "7.6.3",
"path-browserify": "1.0.1",
"prettier": "2.8.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"source-map-loader": "4.0.1",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"webpack": "5.75.0",
"webpack-cli": "5.0.1"
},
"peerDependencies": {
"react": "18.2.0"
}
}