-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.82 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
{
"name": "@virtual-programmers-network/vpn-website",
"version": "0.1.0",
"description": "Virtual Programmer's Network official website",
"keywords": [
"virtual-begings",
"vtuber",
"website"
],
"homepage": "https://github.com/VirtualProgrammersNetwork/vpn-website#readme",
"bugs": "https://github.com/VirtualProgrammersNetwork/vpn-website/issues",
"license": "Apache-2.0",
"author": "VirtualProgrammersNetwork",
"repository": "github:VirtualProgrammersNetwork/vpn-website",
"scripts": {
"build": "npm run rsrc && next build && next export",
"lint": "run-s lint:*",
"lint:eslint": "eslint --cache --fix .",
"lint:stylelint": "stylelint \"**/*.css\"",
"prepare": "husky install",
"serve": "serve out",
"start": "npm run rsrc && next dev",
"rsrc": "npm run rsrc:clone || npm run rsrc:pull",
"rsrc:clone": "git clone https://github.com/VirtualProgrammersNetwork/vpn-website-resource.git && cp vpn-website-resource/public .",
"rsrc:pull": "cd vpn-website-resource && git pull && cd ../ && cp -r vpn-website-resource/public ."
},
"dependencies": {
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"gray-matter": "^4.0.3",
"next": "^11.0.1",
"next-seo": "^4.26.0",
"next-transpile-modules": "^8.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^7.0.1",
"tailwindcss": "^2.2.4",
"twin.macro": "^2.6.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@commitlint/cli": "^13.0.0",
"@commitlint/config-conventional": "^13.0.0",
"@emotion/babel-plugin": "^11.3.0",
"@tailwindcss/typography": "^0.4.1",
"@types/react": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"autoprefixer": "^10.2.6",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-twin": "^1.0.2",
"browserslist": "^4.16.6",
"dotenv": "^10.0.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"npm-run-all2": "^5.0.2",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"serve": "^12.0.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^5.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"tailwindcss-neumorphism": "^0.1.0",
"typescript": "^4.3.5",
"yaml-loader": "^0.6.0"
},
"engines": {
"node": ">=16",
"npm": ">=7"
},
"private": true
}