This repository has been archived by the owner on May 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 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
{
"name": "@instantdomain/bandit",
"version": "1.0.15",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/InstantDomain/instant-bandit"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./server": "./dist/server.js"
},
"files": [
"server.d.ts",
"dist/index.js",
"dist/index.d.ts",
"dist/server.js",
"dist/server.d.ts",
"dist/lib",
"dist/pages/api/",
"dist/components",
"docker-compose.dev.yml"
],
"scripts": {
"dc": "docker-compose -f docker-compose.dev.yml",
"up": "yarn dc up -d",
"rc": "yarn -s dc exec -T redis redis-cli",
"rct": "yarn -s dc exec -T redis-testing redis-cli",
"dev": "NODE_OPTIONS='--inspect=localhost:9229' next dev && yarn dc up -d",
"compile": "tsc -p tsconfig.publish.json",
"minify": "swc ./dist -s false -d ./dist",
"build": "yarn clean && yarn compile && yarn minify",
"start": "next start",
"lint": "yarn eslint .",
"test": "jest --verbose",
"clean": "rm -rf dist",
"pack:test": "yarn build && yarn pack --dry-run && tar tvf instantdomain-bandit-v*",
"prep": "tsc && yarn lint && yarn test"
},
"dependencies": {
"ioredis": "^5.0.6",
"tslib": "^2.4.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.198",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/ioredis": "^4.28.10",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.17.0",
"eslint-config-next": "^12.1.6",
"jest": "^27.0.3",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.14",
"next": "^12.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.7.3"
}
}