forked from marcelscruz/dev-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.24 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.24 KB
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
{
"name": "dev-resources",
"author": "Marcel Cruz",
"version": "1.0.0",
"description": "The API for the resources listed on Dev Resources.",
"scripts": {
"update-db": "ts-node utils/db/update-db.js",
"update-readme": "ts-node utils/readme/update-readme.js",
"dev-order": "node utils/order/resources-extractor.js",
"prettier:format": "prettier --write \"**/*.{ts,js}\"",
"validate": "node scripts/validate-resources.js",
"validate:github": "node scripts/validate-resources.js github",
"suggest-fixes": "node scripts/generate-fix-suggestions.js",
"auto-fix": "node scripts/auto-fix-resources.js"
},
"dependencies": {
"eslint": "^7.18.0",
"lodash.deburr": "^4.1.0",
"prettier": "2.2.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcelscruz/dev-resources.git"
},
"license": "MIT",
"homepage": "https://github.com/marcelscruz/dev-resources#readme",
"bugs": {
"url": "https://github.com/marcelscruz/dev-resources/issues"
},
"devDependencies": {
"@types/node": "^24.0.10"
}
}