-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.76 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
{
"name": "ip_lookup_tool_frontend",
"version": "1.0.0",
"description": "",
"main": "",
"type": "module",
"license": "NONE",
"private": "true",
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
"bugs": "",
"keywords": [],
"author": "folkhack",
"contributors": [],
"scripts": {
"build": "node build.js",
"build_dev": "node build.js --dev",
"build_analyze": "node build.js --analyze",
"build_watch": "node build.js --dev --watch --serve",
"build_reload": "node build.js --dev --watch --live-reload",
"serve": "node build.js --serve",
"serve_dev": "node build.js --dev --serve",
"lint": "npx eslint **/*.{ts,tsx}",
"lint_fix": "npx eslint --fix **/*.{ts,tsx}",
"tests": "node --no-warnings --experimental-vm-modules --experimental-specifier-resolution=node node_modules/jest/bin/jest.js --no-cache --detectOpenHandles --silent",
"tests_verbose": "node --no-warnings --experimental-vm-modules --experimental-specifier-resolution=node node_modules/jest/bin/jest.js --no-cache --detectOpenHandles",
"tests_e2e": "npx playwright test",
"coverage": "node --no-warnings --experimental-vm-modules --experimental-specifier-resolution=node node_modules/jest/bin/jest.js --no-cache --detectOpenHandles --coverage --silent",
"coverage_verbose": "node --no-warnings --experimental-vm-modules --experimental-specifier-resolution=node node_modules/jest/bin/jest.js --no-cache --detectOpenHandles --coverage"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0"
},
"devDependencies": {
"@axe-core/react": "^4.7.3",
"@playwright/test": "^1.38.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/jest-axe": "^3.5.6",
"@types/node": "^20.7.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/react-test-renderer": "^18.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.5.0",
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"esbuild": "^0.19.3",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.48.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-axe": "^8.0.0",
"jest-environment-jsdom": "^29.7.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}