-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
86 lines (86 loc) · 2.57 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
{
"name": "new-grad-positions",
"version": "0.0.5",
"description": "New grad positions database",
"main": "public/data-processed.json",
"types": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate": "esno src/generate-readme.ts",
"prepare": "husky install",
"dev": "speedy dev",
"build": "speedy build",
"dev:vite": "vite dev",
"build:vite": "vite build",
"build:api": "rimraf lib && tsc --emitDeclarationOnly -p tsconfig.build.json",
"prepublishOnly": "npm run build:api",
"eslint:fix": "eslint --fix ."
},
"files": [
"public/data-processed.json",
"index.d.ts",
"lib/data.d.ts"
],
"keywords": [
"job",
"career",
"database"
],
"author": "Yiming Li",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/upupming/new-grad-positions.git"
},
"bugs": {
"url": "https://github.com/upupming/new-grad-positions/issues"
},
"homepage": "https://github.com/upupming/new-grad-positions#readme",
"devDependencies": {
"@iconify-json/carbon": "1.0.8",
"@iconify-json/clarity": "1.1.4",
"@iconify-json/ic": "1.1.7",
"@iconify-json/icon-park-outline": "1.1.5",
"@iconify-json/material-symbols": "1.1.10",
"@iconify-json/mdi": "1.0.7",
"@iconify-json/ph": "1.1.2",
"@speedy-js/speedy-core": "^0.11.2",
"@speedy-js/unplugin": "0.11.2",
"@svgr/core": "6.2.1",
"@types/lodash-es": "4.17.6",
"@types/node": "^17.0.25",
"@types/pinyin": "2.10.0",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@types/react-transition-group": "4.4.4",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"animate.css": "4.1.1",
"axios": "^0.26.1",
"chrome-launcher": "^0.15.0",
"eslint": "^7.32.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"eslint-plugin-react": "^7.29.4",
"esno": "^0.14.1",
"husky": "^7.0.4",
"lodash-es": "^4.17.21",
"pinyin": "^2.11.2",
"puppeteer-core": "^16.1.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-flip-move": "3.0.4",
"react-transition-group": "4.4.2",
"rimraf": "3.0.2",
"rollup-plugin-windicss": "1.8.4",
"tailwindcss-themeable": "1.3.0",
"typescript": "*",
"unplugin-icons": "0.14.7",
"vite": "2.9.5",
"vite-plugin-windicss": "1.8.4",
"windicss": "3.5.1"
}
}