-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.32 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.32 KB
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
{
"name": "roland.codes",
"version": "2.0.0",
"author": "Roland Warmerdam (https://roland.codes)",
"repository": "Rowno/roland.codes",
"homepage": "https://roland.codes",
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export -o build",
"analyze": "ANALYZE=true next build",
"start": "serve build",
"test": "tsc && yarn lint",
"lint": "eslint '**/*.{ts,tsx}'",
"ts-node": "ts-node --compiler-options '{\"module\":\"commonjs\"}'",
"generate-csp-prod": "yarn ts-node tools/generate-csp.ts production",
"generate-csp-dev": "yarn ts-node tools/generate-csp.ts development"
},
"engines": {
"node": "^12"
},
"dependencies": {
"date-fns": "^2.16.1",
"date-fns-tz": "^1.0.11",
"next": "^10.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.0.2",
"@types/google.analytics": "^0.0.41",
"@types/markdown-it": "^12.0.0",
"@types/node": "^12",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"cheerio": "^1.0.0-rc.5",
"content-security-policy-builder": "^2.1.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"front-matter": "^4.0.2",
"highlight.js": "^10.4.1",
"markdown-it": "^12.0.2",
"prettier": "^2.1.2",
"sass": "^1.26.11",
"schema-dts": "^0.8.2",
"serve": "^11.3.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"prettier",
"prettier/@typescript-eslint",
"prettier/react"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"env": {
"browser": true,
"node": true
},
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"react/prop-types": "off"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
}
}