-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.29 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
{
"name": "supergood",
"version": "2.1.0",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"author": "Alex Klarfeld",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/supergoodsystems/supergood-js.git"
},
"bugs": {
"url": "https://github.com/supergoodsystems/supergood-js/issues"
},
"homepage": "https://supergood.ai/",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=14",
"npm": ">=6.0.0"
},
"scripts": {
"check:publish-ready": "yarn build && yarn test",
"preversion": "yarn check:publish-ready",
"postversion": "git add package.json && git commit -m \"chore: update $npm_package_name to v$npm_package_version\" && git tag $npm_package_name@$npm_package_version",
"prepublishOnly": "yarn check:publish-ready",
"postpublish": "git push origin && git push origin --tags",
"test": "yarn run test:unit && yarn run test:e2e",
"test:unit": "jest -c test/jest.unit.config.js",
"test:e2e": "node ./test/mock-server & jest -c test/jest.e2e.config.js",
"posttest:e2e": "kill -9 $(lsof -t -i:3001)",
"clean": "rm -rf dist/ && rm -rf supergood-*.log",
"build": "yarn run clean && tsc -p ./tsconfig.lib.json"
},
"dependencies": {
"headers-polyfill": "^4.0.2",
"lodash": "^4.17.19",
"node-cache": "^5.1.2",
"pino": "^8.16.2",
"signal-exit": "^3.0.7",
"ts-essentials": "^9.4.1",
"web-encoding": "^1.1.5"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/json-server": "^0.14.4",
"@types/lodash": "^4.14.202",
"@types/signal-exit": "^3.0.1",
"@types/superagent": "^4.1.16",
"@typescript-eslint/parser": "^5.49.0",
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.1",
"jest-extended": "^4.0.2",
"jest-mock-server": "^0.1.0",
"json-server": "^0.17.0",
"openai": "^4.10.0",
"openid-client": "5.6.1",
"postgres": "^3.3.4",
"prettier": "^2.8.1",
"superagent": "^8.0.9",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4",
"undici": "^5.23.0"
}
}