-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.93 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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "clibs.org",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"registry": "ts-node scripts/buildRegistry.ts",
"dev": "webpack serve --history-api-fallback",
"prebuild": "rimraf dist",
"build": "webpack --bail",
"build:static": "react-snap",
"fmt": "prettier --write *.{md,js,json} .*.json scripts/*.ts 'src/**/*.{ts,tsx,css,html}'",
"lint": "eslint *.js scripts/*.ts 'src/**/*.{ts,tsx}'",
"test:ts": "tsc --noEmit",
"prepare": "husky install",
"precommit": "lint-staged"
},
"dependencies": {
"@sindresorhus/class-names": "^1.1.0",
"@sindresorhus/slugify": "^1.0.0",
"normalize.css": "^8.0.1",
"qs": "^6.9.4",
"react": "^16.13.1",
"react-autocomplete": "^1.8.1",
"react-document-meta": "^3.0.0-beta.2",
"react-dom": "^16.13.1",
"react-ga": "^3.1.2",
"react-github-fork-ribbon": "^0.6.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"react-tabs": "^3.1.0",
"react-timeago": "^4.4.0",
"ts-dedent": "^1.1.1"
},
"devDependencies": {
"@octokit/rest": "^18.12.0",
"@types/css-minimizer-webpack-plugin": "^3.2.1",
"@types/mini-css-extract-plugin": "^2.4.0",
"@types/node": "^17.0.10",
"@types/prettier": "^2.4.3",
"@types/qs": "^6.9.7",
"@types/react": "^17.0.38",
"@types/react-autocomplete": "^1.8.6",
"@types/react-dom": "^17.0.11",
"@types/react-tabs": "^2.3.4",
"@types/react-timeago": "^4.1.3",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^4.7.2",
"@types/workbox-webpack-plugin": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@webpack-cli/generators": "^2.4.1",
"autoprefixer": "^10.4.2",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"execa": "5",
"express": "^4.17.2",
"fast-deep-equal": "^3.1.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"imagemin-cli": "^7.0.0",
"imagemin-lint-staged": "^0.4.0",
"lint-staged": "^12.2.0",
"meow": "9",
"mini-css-extract-plugin": "^2.5.2",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"parcel-bundler": "^1.12.5",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"postcss-modules": "^4.3.0",
"prettier": "^2.5.1",
"react-snap": "^1.23.0",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"url-loader": "^4.1.1",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"wiki-registry": "^0.0.2",
"workbox-webpack-plugin": "^6.4.2"
},
"reactSnap": {
"source": "dist",
"skipThirdPartyRequests": true
}
}