-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
80 lines (80 loc) · 1.81 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
{
"name": "landing-page",
"version": "1.0.0",
"private": true,
"repository": "[email protected]:globalprivacycontrol/landing-page.git",
"license": "CC BY 4.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"next",
"prettier"
],
"rules": {
"@next/next/no-img-element": "off",
"no-console": [
"warn",
{
"allow": [
"error",
"warn",
"trace"
]
}
],
"no-unused-vars": [
"error",
{
"args": "none",
"ignoreRestSiblings": true
}
]
}
},
"dependencies": {
"bootstrap": "^4.5.3",
"classnames": "^2.3.1",
"gray-matter": "^4.0.3",
"highlight.js": "^11.6.0",
"js-yaml": "^4.0.0",
"next": "^14.2.13",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.31",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.4.1",
"postcss-url": "^10.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark": "^14.0.2",
"remark-html": "^15.0.1",
"sass": "^1.49.9"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.10.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.4.0",
"prettier": "^2.5.1",
"prop-types": "^15.8.1"
}
}