forked from Azure/static-web-apps-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@azure/static-web-apps-cli",
"version": "0.8.3-alpha",
"description": "Azure Static Web Apps CLI",
"scripts": {
"start": "node ./dist/cli/bin.js start ./cypress/fixtures/static --api-location=./cypress/fixtures/api --port 1234 --devserver-timeout 10000 --verbose silly",
"start:config": "node ./dist/cli/bin.js --config ./cypress/fixtures/static/swa-cli.config.json start app",
"prestart": "npm run build",
"pretest": "npm run build",
"test": "jest --detectOpenHandles --silent --verbose",
"e2e": "start-server-and-test start http://0.0.0.0:1234 cy:run",
"e2e:config": "start-server-and-test start:config http://0.0.0.0:1234 cy:run",
"cy:run": "cypress run",
"cy:open": "cypress open",
"build": "tsc",
"prebuild": "rimraf -fr dist",
"postbuild": "npm run copy-assets",
"watch": "tsc --watch",
"copy-assets": "node ./scripts/copy-assets.js",
"prepare": "npm run build"
},
"bin": {
"swa": "dist/cli/bin.js",
"swa-emu": "dist/cli/bin.js"
},
"author": "Microsoft Corporation",
"dependencies": {
"@types/globalyzer": "^0.1.1",
"@types/globrex": "^0.1.1",
"chalk": "^4.1.2",
"commander": "^7.2.0",
"concurrently": "^6.4.0",
"cookie": "^0.4.1",
"finalhandler": "^1.1.2",
"globalyzer": "^0.1.4",
"globrex": "^0.1.2",
"http-proxy": "^1.18.1",
"internal-ip": "^6.2.0",
"node-fetch": "^2.6.6",
"ora": "^5.4.1",
"rimraf": "^3.0.2",
"serve-static": "^1.14.1",
"update-notifier": "^5.1.0",
"wait-on": "^5.3.0",
"which": "^1.3.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@types/concurrently": "^6.0.1",
"@types/cookie": "^0.4.0",
"@types/finalhandler": "^1.1.0",
"@types/http-proxy": "^1.17.6",
"@types/jest": "^26.0.23",
"@types/mock-fs": "^4.13.0",
"@types/node-fetch": "^2.5.10",
"@types/serve-static": "^1.13.9",
"@types/shelljs": "^0.8.8",
"@types/update-notifier": "^5.0.0",
"@types/wait-on": "^5.3.0",
"@types/which": "^2.0.1",
"cypress": "^7.3.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"lint-staged": "^10.5.3",
"mock-fs": "^4.14.0",
"prettier": "^2.3.0",
"start-server-and-test": "^1.12.3",
"supertest": "^4.0.2",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"homepage": "https://github.com/azure/static-web-apps-cli#readme",
"private": false,
"keywords": [
"azure",
"cloud",
"serverless",
"hosting",
"static",
"authentication",
"staticwebapp"
],
"bugs": {
"url": "https://github.com/azure/static-web-apps-cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azure/static-web-apps-cli.git"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write",
"git add"
]
}
}