-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
{
"name": "spfx-fast-serve",
"version": "4.0.2",
"author": "Sergei Sergeev (https://github.com/s-KaiNet)",
"description": "Improve your SharePoint Framework development by speeding up 'serve' command",
"main": "lib/index.js",
"bin": "lib/index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "npm run lint && tsc -p . && npm run copy",
"copy": "cpy **/*.* ../../lib/templates --parents --cwd=src/templates",
"lint": "eslint -c .eslintrc.json --ext .ts src",
"prepublishOnly": "rimraf -- lib && npm run build",
"dev": "npm run copy && concurrently \"npm run watch:ts\" \"npm run watch:template\"",
"watch:ts": "tsc -p . --watch",
"watch:template": "onchange \"src/templates/**/*.*\" -- npm run copy"
},
"keywords": [
"sharepoint framework",
"performance",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/s-KaiNet/spfx-fast-serve.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/s-KaiNet/spfx-fast-serve/issues"
},
"homepage": "https://github.com/s-KaiNet/spfx-fast-serve",
"dependencies": {
"@types/cross-spawn": "6.0.6",
"@types/node": "20.4.1",
"@types/update-notifier": "5.1.0",
"@types/yargs": "16.0.3",
"chalk": "4.1.2",
"cross-spawn": "7.0.3",
"detect-indent": "6.1.0",
"detect-package-manager": "3.0.1",
"enquirer": "2.4.1",
"log-symbols": "4.1.0",
"replace-in-file": "7.0.2",
"update-notifier": "5.1.0",
"yargs": "16.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"concurrently": "^6.0.0",
"cpy-cli": "^3.1.1",
"eslint": "^7.22.0",
"onchange": "^7.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"
}
}