-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.01 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
{
"name": "jahir-website",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "next start",
"clean": "rm -rf .next && rm -rf out",
"dev": "next dev",
"watch": "npm run dev",
"prebuild": "npm run clean",
"build": "next build",
"deploy": "npm run build",
"lint": "./node_modules/eslint/bin/eslint.js ./components ./pages -c .eslintrc.json --ignore-path .eslintignore",
"prelocal": "npm run deploy",
"local": "serve out",
"upgrade": "npx npm-check-updates -u"
},
"dependencies": {
"@formium/client": "^0.1.4",
"@formium/react": "^0.2.0",
"@mdi/js": "^5.9.55",
"@mdi/react": "^1.5.0",
"@svgr/webpack": "^5.5.0",
"frostcolor": "^3.0.0",
"gray-matter": "^4.0.3",
"next": "^11.0.1",
"next-translate": "^1.0.7",
"preact": "^10.5.14",
"raw-loader": "^4.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^6.0.3",
"react-palette": "^1.0.2",
"react-syntax-highlighter": "^15.4.4",
"reading-time": "^1.3.0",
"remark-gfm": "^1.0.0",
"remove-markdown": "^0.3.0",
"require-all": "^3.0.0",
"serve": "^12.0.0",
"swr": "^0.5.6",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@bpsmart/eslint-config-base": "0.1.0",
"@bpsmart/eslint-config-react": "0.0.8",
"@types/node": "^16.4.13",
"@types/react": "^17.0.16",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/remove-markdown": "^0.3.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.1.0",
"globby": "^11.0.4",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}