-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 2.12 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
{
"name": "gce-india-www",
"version": "0.0.0",
"scripts": {
"start": "npm run dev",
"dev:index": "cross-env nodemon --watch 'public/users/**/*.md' -e '*' --exec 'npm run index'",
"dev:server": "vite --port 8080",
"dev": "concurrently npm:dev:index npm:dev:server",
"build": "npm-run-all index build:app",
"build:app": "tsc && vite build",
"preview": "zx ./preview.mjs",
"clean": "rimraf ./build && npm run clean:js",
"clean:js": "rimraf ./src/**/*.js && rimraf ./src/*.js",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"index": "tsc --downlevelIteration --esModuleInterop ./build-indices.ts && node ./build-indices.js && npm run clean:js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.17",
"axios": "^0.25.0",
"bootstrap": "^5.1.3",
"cheerio": "^1.0.0-rc.10",
"dayjs": "^1.10.7",
"glob": "^7.2.0",
"markdown-to-txt": "^2.0.0",
"markdown-yaml-metadata-parser": "^3.0.0",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.2.2",
"react-list": "^0.8.16",
"react-loader-spinner": "^5.1.0",
"react-markdown": "^8.0.0",
"react-router-dom": "^6.2.1",
"reactstrap": "^9.0.1",
"rehype-raw": "^6.1.1",
"rehype-sanitize": "^5.0.1",
"remark-gfm": "^3.0.1",
"styled-components": "^5.3.3",
"use-query-string": "^2.4.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-list": "^0.8.7",
"@types/styled-components": "^5.1.21",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vitejs/plugin-react": "^1.0.7",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"eslint-plugin-react": "^7.28.0",
"fs-extra": "^10.0.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"vite": "^2.7.2",
"vite-plugin-html": "^3.0.3",
"zx": "^4.3.0"
}
}