-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.11 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
{
"name": "structure",
"private": true,
"description": "A web tool to view and organize tree-like structures",
"version": "0.2.1",
"author": "Dima Vyshniakov <[email protected]>",
"keywords": [
"structure"
],
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/morewings/structure"
},
"bugs": {
"url": "https://github.com/morewings/structure/issues"
},
"scripts": {
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 0",
"lint:style": "stylelint ./src/**/**.css",
"fix:style": "pnpm run lint:style --fix",
"edit:fonts": "fontello-cli open --config ./fontello/config.json",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:code": "eslint ./src/",
"fix:code": "pnpm run lint:code --fix",
"lint-staged": "lint-staged",
"prepare": "is-ci || husky install"
},
"dependencies": {
"bootstrap": "^5.2.3",
"classnames": "^2.3.2",
"css-vars-hook": "0.7.0",
"file-saver": "^2.0.5",
"lodash": "^4.17.21",
"nanoid": "^5.0.0",
"next": "13.5.1",
"prop-types": "^15.8.1",
"ramda": "^0.29.0",
"react": "18.2.0",
"react-bootstrap": "^2.7.2",
"react-dom": "18.2.0",
"react-modal": "^3.16.1",
"react-redux": "^8.0.5",
"recharts": "^2.4.3",
"redux": "^4.2.1",
"sharp": "^0.32.6",
"the-new-css-reset": "^1.8.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.2.1",
"alias-hq": "^6.1.0",
"autoprefixer": "^10.4.13",
"eslint": "8.56.0",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-ssr-friendly": "^1.0.6",
"fontello-cli": "^0.6.2",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^15.0.0",
"postcss-nesting": "^12.0.0",
"postcss-preset-env": "^9.0.0",
"prettier": "^2.8.4",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-order": "^6.0.2"
}
}