-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "create-mdsn-app",
"description": "Pedromdsn Boilerplates",
"version": "1.1.2",
"author": "Pedromdsn <[email protected]>",
"main": "dist/src/index.js",
"license": "MIT",
"bin": {
"create-mdsn-app": "dist/src/index.js"
},
"keywords": [
"create-mdsn-app",
"react",
"node",
"nextjs",
"express",
"template",
"startKit"
],
"scripts": {
"start": "ts-node src",
"sync": "ts-node src/build/loadTemplates.ts",
"build": "npm run sync && tsc -p . && node dist/src/build/post && npm link",
"pub": "npm run build && npm publish",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix"
},
"dependencies": {
"chalk": "^4.0.0",
"execa": "^5.0.0",
"fs-extra": "^10.1.0",
"inquirer": "^8.0.0",
"update-notifier": "^5.0.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.0.0",
"@types/node": "^18.7.18",
"@types/update-notifier": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"git-repo-clone": "^0.3.2",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.3"
}
}