forked from architect/sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.47 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
{
"name": "@ticketplushq/architect-sandbox",
"version": "5.7.4-a",
"description": "Architect dev server: run full Architect projects locally & offline",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && npm run test:integration && npm run coverage",
"test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-spec",
"test:integration": "cross-env tape 'test/integration/**/*-test.js' | tap-spec",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
"lint": "eslint . --fix",
"rc": "npm version prerelease --preid RC",
"build": "node bin/binary-config.js && npx pkg bin"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ticketplushq/architect-sandbox.git"
},
"author": "Brian LeRoux <b@brian.io>",
"license": "Apache-2.0",
"bin": {
"sandbox": "src/cli/cli.js"
},
"files": [
"src/*"
],
"dependencies": {
"@architect/asap": "~6.0.2",
"@architect/create": "~4.2.0",
"@architect/hydrate": "~3.2.1",
"@architect/inventory": "~3.5.5",
"@architect/utils": "~3.1.7",
"@aws-sdk/client-apigatewaymanagementapi": "^3.316.0",
"@aws-sdk/client-dynamodb": "^3.316.0",
"@aws-sdk/client-s3": "^3.316.0",
"@aws-sdk/client-sns": "^3.316.0",
"@aws-sdk/client-sqs": "^3.316.0",
"@aws-sdk/client-ssm": "^3.316.0",
"@aws-sdk/lib-dynamodb": "^3.316.0",
"@aws-sdk/node-http-handler": "^3.360.0",
"@begin/hashid": "~1.0.0",
"aws-sdk": "^2.1363.0",
"chalk": "4.1.2",
"chokidar": "~3.5.3",
"depstatus": "~1.1.1",
"dynalite": "~3.2.2",
"finalhandler": "~1.2.0",
"glob": "~10.3.3",
"http-proxy": "~1.18.1",
"lambda-runtimes": "~1.1.4",
"minimist": "~1.2.8",
"router": "~1.3.8",
"run-parallel": "~1.2.0",
"run-series": "~1.1.9",
"send": "~0.18.0",
"server-destroy": "~1.0.1",
"tmp": "~0.2.1",
"tree-kill": "~1.2.2",
"update-notifier-cjs": "~5.1.6",
"ws": "~8.13.0"
},
"devDependencies": {
"@architect/eslint-config": "~2.1.1",
"@architect/functions": "~6.0.1",
"@architect/req-res-fixtures": "git+https://github.com/architect/req-res-fixtures.git",
"cross-env": "~7.0.3",
"eslint": "~8.45.0",
"fs-extra": "~11.1.1",
"nyc": "~15.1.0",
"pkg": "~5.8.1",
"proxyquire": "~2.1.3",
"tap-spec": "~5.0.0",
"tape": "~5.6.6",
"tiny-json-http": "~7.5.1"
},
"eslintConfig": {
"extends": "@architect/eslint-config"
}
}