-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.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
{
"name": "beerjs-valdivia-site",
"version": "3.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"preexport": "npm run build",
"export": "next export",
"lint": "eslint --fix src/**/*.{js,jsx}",
"format": "prettier-standard '{src}/**/*.{js,jsx}'",
"precommit": "lint-staged"
},
"dependencies": {
"autoprefixer": "^9",
"next": "10.0.2",
"postcss": "^7",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"scrollreveal": "^4.0.7",
"tailwindcss": "npm:@tailwindcss/postcss7-compat"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/runtime": "^7.10.4",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@commitlint/prompt-cli": "8.3.5",
"@react-native-community/eslint-config": "^1.1.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-react-app": "5.2.1",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-react": "9.2.0",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.20.3",
"eslint-plugin-react-hooks": "4.0.6",
"eslint-plugin-standard": "4.0.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier-standard": "^16.4.1"
}
}