-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
144 lines (144 loc) · 6.54 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "@aiera/client-sdk",
"version": "0.0.79",
"description": "The Aiera Client SDK",
"author": "Aiera, Inc.",
"license": "CC-BY-NC-ND-4.0",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run clean && npm run codegen && concurrently npm:build:lib:* && cd dist && npm pack && mv aiera-client-sdk-$npm_package_version.tgz aiera-client-sdk.tgz",
"build:watch": "npm run clean && npm run codegen && concurrently -k npm:build:watch:* npm:test:watch",
"build:docs": "typedoc",
"build:watch:docs": "typedoc --watch --preserveWatchOutput",
"build:lib:js": "npm run ts src/build/index.ts",
"build:lib:types": "tsc --emitDeclarationOnly",
"build:watch:serve": "light-server -d 200 -s dist -p 8000 --proxy http://localhost:8001 --proxypath / -w '*.js, src/**/* # # reload'",
"build:watch:lib:js": "npm run ts src/build/index.ts -- --watch --module $npm_config_module",
"build:watch:lib:types:tsc": "tsc --emitDeclarationOnly --watch --incremental --pretty --preserveWatchOutput",
"build:watch:lib:types:gql": "graphql-codegen -c .codegen.js --watch",
"clean": "rimraf -rf dist/*",
"codegen": "graphql-codegen -c .codegen.js",
"lint:fix": "eslint --no-error-on-unmatched-pattern 'src/**/*' --fix",
"new:component": "plop --plopfile templates/plopfile.ts component component",
"new:nested:component": "plop --plopfile templates/plopfile.ts nested component",
"new:module": "plop --plopfile templates/plopfile.ts component module",
"new:nested:module": "plop --plopfile templates/plopfile.ts nested module",
"new:svg": "plop --plopfile templates/plopfile.ts svg",
"new:hook": "plop --plopfile templates/plopfile.ts hook",
"new": "plop --plopfile templates/plopfile.ts",
"release": "NODE_ENV=production npm run build && hub release create -m v$npm_package_version -a dist/aiera-client-sdk.tgz v$npm_package_version",
"pre-release": "export VERSION=pre-$(date '+%Y-%m-%dT%H-%M-%S')-$(git rev-parse HEAD | cut -c -7) && NODE_ENV=production npm run build && hub release create -m $VERSION -a dist/aiera-client-sdk.tgz $VERSION",
"publish-web-dev": "NODE_ENV=development npm run build && npm run build:docs && npm run test && aws s3 sync --acl=public-read ./dist/web s3://aiera-public-assets/aiera-sdk/dev/$npm_package_version",
"publish-web-prod": "NODE_ENV=production npm run build && npm run build:docs && npm run test && aws s3 sync --acl=public-read ./dist/web s3://aiera-public-assets/aiera-sdk/$npm_package_version",
"start": "npm run build:watch",
"test": "jest --config .jest/jest.config.js --coverage",
"test:watch": "jest --config .jest/jest.config.js --watchAll",
"ts": "node -r esbuild-register",
"prepare": "node -e \"if(require('fs').existsSync('.git')){process.exit(1)}\" || husky install",
"pre-commit": "npm run build:lib:types && concurrently lint-staged npm:test"
},
"peerDependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@finos/fdc3": "^1.2.0",
"@graphql-codegen/add": "^3.0.0",
"@graphql-codegen/cli": "^2.3.0",
"@graphql-codegen/typescript": "^2.4.0",
"@graphql-codegen/typescript-operations": "^2.0.1",
"@graphql-codegen/typescript-urql": "^3.0.0",
"@tailwindcss/line-clamp": "0.3.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/eventemitter3": "^2.0.2",
"@types/globby": "^9.1.0",
"@types/highlight-words-core": "^1.2.1",
"@types/jest": "^27.0.0",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.merge": "^4.6.6",
"@types/luxon": "^2.0.0",
"@types/react": "^18.3.11",
"@types/react-calendar": "^3.5.2",
"@types/react-dom": "^18.3.1",
"@types/react-frame-component": "^4.1.2",
"@types/react-text-mask": "^5.4.11",
"@types/yargs": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"autoprefixer": "^10.4.20",
"chokidar": "^3.5.2",
"concurrently": "^6.4.0",
"cpy": "^8.1.2",
"dotenv": "^16.0.0",
"esbuild": "^0.14.2",
"esbuild-register": "^3.0.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"globby": "^12.0.2",
"husky": "^7.0.0",
"jest": "^27.0.6",
"light-server": "^2.9.1",
"lint-staged": "^12.0.2",
"plop": "^2.7.4",
"postcss": "^8.4.47",
"postcss-load-config": "^3.1.0",
"prettier": "^2.3.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "^3.0.2",
"tailwindcss": "^3.4.13",
"typedoc": "^0.22.18",
"typedoc-plugin-not-exported": "^0.1.6",
"typedoc-plugin-param-names": "^3.1.0",
"typescript": "4.6.4",
"yargs": "^17.0.1"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@urql/devtools": "2.0.3",
"@urql/exchange-auth": "0.1.6",
"@urql/exchange-graphcache": "4.3.5",
"@virtuoso.dev/message-list": "^1.9.5",
"ajv": "^8.17.1",
"classnames": "2.3.1",
"eventemitter3": "4.0.7",
"graphql": "15.5.3",
"graphql-tag": "2.12.6",
"highcharts": "9.3.2",
"highcharts-react-official": "3.1.0",
"highlight-words-core": "1.2.2",
"html2canvas": "^1.4.1",
"lodash.debounce": "^4.0.8",
"lodash.merge": "4.6.2",
"luxon": "2.1.1",
"mux.js": "^6.3.0",
"pusher-js": "8.0.0",
"react-calendar": "3.7.0",
"react-idle-timer": "5.1.3",
"react-phone-number-input": "3.3.12",
"react-text-mask": "5.5.0",
"recharts": "^2.14.1",
"shaka-player": "4.3.5",
"tailwindcss-interaction-variants": "^5.0.0",
"timeago.js": "4.0.2",
"ts-pattern": "3.3.3",
"urql": "2.0.5",
"zustand": "^5.0.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --no-error-on-unmatched-pattern --fix"
]
}
}