-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
73 lines (73 loc) · 2.15 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
{
"name": "jekyll-theme-primer-spec",
"version": "1.10.0",
"description": "A Jekyll theme for sites with content-heavy pages, based on GitHub's Primer theme",
"repository": {
"url": "https://github.com/eecs485staff/primer-spec"
},
"main": "index.html",
"scripts": {
"build": "script/build",
"format": "script/prettier",
"lint": "eslint --max-warnings=0 ./src_js",
"lint:fix": "eslint --max-warnings=0 --fix ./src_js",
"test": "script/cibuild",
"test:js": "npx jest",
"watch": "script/server"
},
"author": "Sesh Sadasivam, EECS 485 Staff, Ben Balter",
"license": "MIT",
"sideEffects": [
"./src_js/main.tsx"
],
"dependencies": {
"@sindresorhus/slugify": "^2.1.0",
"anchor-js": "^4.3.1",
"clsx": "^1.1.1",
"jsx-dom": "*",
"pig-latinizer": "^1.0.6",
"preact": "^10.18.1"
},
"devDependencies": {
"@primer/sync": "^2.0.0",
"@types/anchor-js": "^4.2.1",
"@types/debounce": "^1.2.0",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.0.0",
"@types/listr": "^0.14.4",
"@types/node": "^12.20.19",
"@types/semver": "^7.3.8",
"@types/webpack": "^5.28.4",
"@types/webpack-dev-server": "^3.11.5",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"eslint": "^8.52.0",
"eslint-config-preact": "^1.1.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"listr": "^0.14.2",
"prettier": "^3.0.3",
"semver": "^7.3.4",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"yargs": "^17.1.0"
}
}