-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.5 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
107
108
109
110
111
112
113
114
115
116
{
"name": "@seamapi/fake-seam-connect",
"version": "1.74.0",
"description": "Fake for Seam Connect.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"bin": "./dist/server.js",
"typings": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"sideEffects": false,
"keywords": [
"node"
],
"homepage": "https://github.com/seamapi/fake-seam-connect",
"bugs": "https://github.com/seamapi/fake-seam-connect/issues",
"repository": "seamapi/fake-seam-connect",
"license": "MIT",
"author": {
"name": "Seam Labs, Inc.",
"email": "[email protected]"
},
"files": [
"public",
"dist",
"!**/*.test.ts"
],
"scripts": {
"start": "next dev",
"build": "npm run build:ts",
"prebuild": "npm run build:codegen",
"postbuild": "node ./dist/index.js",
"build:codegen": "npm run build:route-types",
"prebuild:codegen": "npm run build:nsm",
"build:ts": "tsup",
"prebuild:ts": "del dist",
"postbuild:ts": "tsup --format cjs src/index.ts",
"build:nsm": "nsm build",
"build:route-types": "nextlove generate-route-types --packageDir . --outputFile ./src/route-types.ts --apiPrefix / --pathGlob '/src/pages/api/**/*.ts'",
"postbuild:route-types": "prettier --write src/route-types.ts",
"typecheck": "tsc",
"test": "c8 ava",
"pretest": "tsx src/index.ts",
"test:update": "ava --update-snapshots",
"test:watch": "ava --watch",
"test:debug": "ava debug --break",
"lint": "eslint --ignore-path .gitignore .",
"prelint": "prettier --check --ignore-path .gitignore .",
"postversion": "git push --follow-tags",
"example": "tsx examples",
"example:inspect": "tsx --inspect examples",
"format": "eslint --ignore-path .gitignore --fix .",
"preformat": "prettier --write --ignore-path .gitignore .",
"report": "c8 report"
},
"engines": {
"node": ">=18.12.0",
"npm": ">= 9.0.0"
},
"optionalDependencies": {
"@seamapi/fake-devicedb": ">=1.0.0-rc.0",
"zustand": "^4.3.7",
"zustand-hoist": "^2.0.0"
},
"devDependencies": {
"@godaddy/terminus": "^4.12.1",
"@seamapi/fake-devicedb": "^1.6.0",
"@seamapi/logger": "^1.9.2",
"@seamapi/types": "^1.200.0",
"@seamapi/url-search-params-serializer": "^1.1.0",
"@tsconfig/next": "^1.0.5",
"@types/lodash": "^4.14.202",
"@types/luxon": "^3.4.2",
"@types/node": "^20.8.10",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@types/jsonwebtoken": "^9.0.6",
"ava": "^5.0.1",
"bs58": "^5.0.0",
"c8": "^8.0.0",
"cpy-cli": "^5.0.0",
"del-cli": "^5.0.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^42.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"get-port": "^5.1.1",
"immer": "^9.0.21",
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^9.0.2",
"landlubber": "^1.0.0",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"minisearch": "^6.1.0",
"mkdirp": "^3.0.0",
"ms": "^2.1.3",
"next": "^12.3.4",
"nextjs-server-modules": "^4.1.1",
"nextlove": "^2.14.0",
"prettier": "^3.0.0",
"tsc-alias": "^1.8.2",
"tsup": "^7.1.0",
"tsx": "^4.6.2",
"typed-axios-instance": "^3.1.0",
"typescript": "~5.1.0",
"zod": "^3.21.4",
"zoned-time": "^1.1.2",
"zustand": "^4.3.7",
"zustand-hoist": "^2.0.0"
}
}