-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.22 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
{
"name": "ripixel",
"version": "5.0.33",
"description": "I'm James King, and I make things for the web",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"build": "ts-node ./scripts/humble.ts",
"build:dev": "NODE_ENV=development ts-node ./scripts/humble.ts",
"serve": "serve public/",
"lint": "eslint \"scripts/**/*{.js,.ts}\"",
"lint:ci": "eslint \"scripts/**/*{.js,.ts}\" --format junit -o reports/eslint/results.xml",
"release": "standard-version -m 'chore(release): %s [skip ci]'",
"release:ci": "npm run release && git push --follow-tags origin master --no-verify"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ripixel/ripixel-website.git"
},
"author": "James King <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ripixel/ripixel-website/issues"
},
"engines": {
"node": "^18"
},
"homepage": "https://github.com/ripixel/ripixel-website#readme",
"devDependencies": {
"@types/node": "^18.0.0",
"@types/prettier": "^2.0.1",
"@types/showdown": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"clean-css-cli": "^5.0.0",
"date-fns": "^2.13.0",
"enquirer": "^2.3.6",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^4.0.0",
"execa": "^7.0.0",
"favicons-generate": "0.0.15",
"feed": "^4.2.2",
"firebase-tools": "^12.0.0",
"husky": "^8.0.0",
"listr": "^0.14.3",
"listr2": "^6.0.0",
"node-fetch": "^3.3.0",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.0",
"serve": "^14.0.0",
"showdown": "^2.0.0",
"showdown-highlight": "^3.0.0",
"standard-version": "^9.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0",
"uninstall": "0.0.0",
"xml-js": "^1.6.11"
},
"overrides": {
"sharp": "^0.32.0"
},
"husky": {
"hooks": {
"pre-push": "pretty-quick --staged"
}
}
}