-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.93 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
{
"name": "pprice-art",
"version": "1.0.0",
"license": "MIT",
"private": "true",
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint */**/*.{ts,tsx,js} --quiet --fix",
"previews": "node ./scripts/generate-previews.js",
"prepare": "husky install"
},
"dependencies": {
"@azure/cognitiveservices-imagesearch": "^3.0.0",
"@azure/ms-rest-azure-js": "^2.0.1",
"@flatten-js/core": "^1.2.8",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@welldone-software/why-did-you-render": "^7.0.1",
"axios": "^0.27.2",
"d3": "^7.4.4",
"delaunator": "^5.0.0",
"file-saver": "^2.0.2",
"isomorphic-xml2js": "^0.1.3",
"jimp": "^0.16.0",
"jsdom": "^19.0.0",
"jsonwebtoken": "^8.5.1",
"next": "^12.1.5",
"probe-image-size": "^7.2.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"seedrandom": "^3.0.5",
"use-axios-client": "^2.0.0",
"use-debounce": "^8.0.1"
},
"devDependencies": {
"@types/d3": "^7.4.0",
"@types/delaunator": "^5.0.0",
"@types/file-saver": "^2.0.1",
"@types/jsdom": "^16.2.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^16.11.12",
"@types/offscreencanvas": "^2019.7.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/seedrandom": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"husky": "^8.0.0",
"lint-staged": "^12.4.2",
"node-svg2img": "^1.1.0",
"prettier": "^2.0.5",
"tree-kill": "^1.2.2",
"typescript": "^4.5.3"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}