-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
63 lines (63 loc) · 2 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
{
"name": "hello-world",
"description": "A collection of hello world snippets in different programming languages.",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"engineStrict": true,
"homepage": "https://github.com/devstrons/heloworld#readme",
"bugs": "https://github.com/devstrons/heloworld/issues",
"repository": {
"type": "git",
"url": "https://github.com/devstrons/heloworld.git"
},
"engines": {
"node": "^14"
},
"scripts": {
"clean": "rm -rf dist",
"dev:vite": "vite --config vite.config.js src",
"dev:server": "node server/index.js",
"dev": "concurrently \"npm run dev:vite\" \"npm run dev:server\" -n '🌐,⚡'",
"build": "vite --config vite.config.js build src",
"preview": "concurrently 'npm run build && sirv dist --single' 'npm run dev:server' -n '🌐,⚡'",
"lint": "run-p 'lint:*'",
"lint:html": "prettier -w 'src/**/*.html'",
"lint:js": "eslint --fix -c .eslintrc.cjs '**/*.+(cjs|js)'"
},
"dependencies": {
"@octokit/rest": "^18.10.0",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@hapi/hapi": "^20.1.5",
"@tailwindcss/typography": "^0.4.1",
"@types/glob": "^7.1.4",
"@vercel/node": "^1.12.1",
"autoprefixer": "^10.3.2",
"axios": "^0.21.1",
"concurrently": "^6.2.1",
"es-dirname": "^0.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"glob": "^7.1.7",
"highlight.js": "^11.2.0",
"itivrutaha": "^2.0.9",
"nprogress": "^0.2.0",
"posthtml-inline-svg": "^0.2.0",
"posthtml-modules": "^0.7.4",
"prettier": "^2.3.2",
"sirv-cli": "^1.0.14",
"tailwindcss": "^2.2.7",
"vercel": "^23.1.2",
"vite": "^2.5.1",
"vite-plugin-full-reload": "^0.2.2",
"vite-plugin-html": "^2.1.0",
"vite-plugin-posthtml": "^0.0.3"
}
}