-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.51 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
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "vuttr",
"version": "0.0.1",
"description": "Very Useful Tools to Remember",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"eslint": "eslint --ext=js --ext=jsx --fix ./src",
"stylelint": "stylelint \"src/**/*.css\"",
"prettier": "prettier --config ./.prettierrc.json --write \"src/**/*{.js,.jsx,.css}\"",
"generate-icons": "node scripts/generate-icons.js",
"export": "next export"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielbarion/VUTTR.git"
},
"keywords": [
"VUTTR",
"BossaBox",
"JS",
"JavaScript",
"Challenge"
],
"author": "Daniel Barion",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielbarion/VUTTR/issues"
},
"homepage": "https://github.com/danielbarion/VUTTR#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"postcss-custom-properties": "^9.1.1",
"postcss-import": "^12.0.1",
"prettier": "^2.0.5",
"react-app-rewire-postcss": "^3.0.2",
"react-app-rewired": "^2.1.6",
"react-scripts": "^3.4.1",
"react-test-renderer": "^16.13.1",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"url-loader": "^4.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@pathofdev/react-tag-input": "^1.0.7",
"@zeit/next-css": "^1.0.1",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"next": "^9.4.4",
"next-offline": "^5.0.2",
"nprogress": "^0.2.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-select": "^3.1.0"
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
],
"src/**/*.{js,jsx}": [
"eslint --fix"
],
"*.css": [
"stylelint"
]
}
}