-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.67 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.67 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
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
{
"name": "next-stride",
"version": "2.6.4",
"description": "CLI tools for Next JS App 🚀",
"main": "./lib/index.js",
"bin": {
"stride": "./lib/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\"",
"build": "rm -rf lib && tsc -p .",
"release": "npm run test-all && npm run build && np",
"local": "npm run build && npm link",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DJaegerScript/next-stride.git"
},
"keywords": [
"cli",
"next",
"nextjs",
"react",
"directory",
"folder",
"scaffolding"
],
"author": "DJaegerScript",
"license": "MIT",
"bugs": {
"url": "https://github.com/DJaegerScript/next-stride/issues"
},
"homepage": "https://github.com/DJaegerScript/next-stride#readme",
"devDependencies": {
"@types/figlet": "^1.5.4",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": ">=5.16.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"dependencies": {
"commander": "^9.3.0",
"figlet": "^1.5.2",
"fs-extra": "^10.1.0",
"kleur": "^4.1.5"
}
}