-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.77 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
{
"name": "@obusk/npm-diff.app",
"private": true,
"version": "0.0.1",
"description": "📦🔃 Inspect changes between npm packages in a webapp",
"keywords": [
"diff",
"npm",
"package",
"vercel"
],
"author": "Oscar Busk <[email protected]>",
"license": "ISC",
"volta": {
"node": "16.18.1",
"npm": "9.1.1"
},
"engines": {
"node": "16.x",
"npm": "9.x"
},
"simple-git-hooks": {
"pre-commit": "npm run lint-staged -- --quiet"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "next lint --ignore-path .gitignore",
"postlint": "npm run prettier",
"lint-fix": "next lint --ignore-path .gitignore --fix",
"prettier": "prettier **/*.{md,yml,yaml,json} --ignore-path .gitignore --check",
"postlint-fix": "npm run prettier-fix",
"prettier-fix": "prettier **/*.{md,yml,yaml,json} --ignore-path .gitignore --write",
"lint-staged": "lint-staged",
"test": "jest --watch",
"test-ci": "jest --ci"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.12",
"@chakra-ui/react": "^2.4.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"downshift": "^7.0.1",
"jest": "^29.3.1",
"libnpmdiff": "^5.0.3",
"next": "^13.0.3",
"npm-package-arg": "^10.0.0",
"pacote": "^15.0.6",
"react": "^18.2.0",
"react-diff-view": "^2.4.10",
"react-div-100vh": "^0.7.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"react-use": "^17.4.0",
"semver": "^7.3.8",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.3",
"@types/libnpmdiff": "^2.0.0",
"@types/node": "^18.11.9",
"@types/npm-package-arg": "^6.1.1",
"@types/pacote": "^11.1.5",
"@types/react": "^18.0.25",
"@types/react-diff-view": "./types/react-diff-view",
"@types/react-dom": "^18.0.9",
"@types/semver": "^7.3.13",
"@types/validate-npm-package-name": "^4.0.0",
"eslint": "^8.27.0",
"eslint-config-next": "^13.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.9.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"simple-git-hooks": "^2.8.1",
"typescript": "4.9.3"
}
}