-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
78 lines (78 loc) · 2.14 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": "dobble-generator",
"version": "1.0.0",
"private": true,
"homepage": "https://macrusher.github.io/dobble-generator",
"license": "MIT",
"scripts": {
"start": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"deploy": "run-s test build deploy:*",
"deploy:gh-pages": "gh-pages -d build",
"test": "run-s test:*",
"test:ts": "tsc --noEmit",
"test:lint": "eslint src --ext ts,tsx",
"fix": "run-s -c fix:* || true",
"fix:lint": "eslint src --ext ts,tsx --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"dependencies": {
"ajv": "8.11.0",
"jimp": "0.16.2",
"jspdf": "2.5.1",
"lodash": "4.17.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.0.4",
"redux": "4.2.0",
"redux-devtools-extension": "2.13.9",
"redux-logic": "3.0.3",
"rxjs": "7.5.7",
"semantic-ui-css": "2.5.0",
"semantic-ui-react": "2.1.3",
"uniforms": "3.10.1",
"uniforms-bridge-json-schema": "3.10.1",
"uniforms-semantic": "3.10.1"
},
"devDependencies": {
"@babel/core": "7.19.3",
"@babel/eslint-parser": "7.19.1",
"@babel/eslint-plugin": "7.19.1",
"@babel/preset-react": "7.18.6",
"@types/jest": "29.2.0",
"@types/jspdf": "2.0.0",
"@types/lodash": "4.14.186",
"@types/node": "18.11.0",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/react-redux": "7.1.24",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "7.2.0",
"eslint-config-vazco": "6.2.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"gh-pages": "2.2.0",
"husky": "1.3.1",
"node-sass": "7.0.3",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"react-scripts": "4.0.3",
"typescript": "4.8.4"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}