forked from shu8/cap-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.94 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
{
"name": "cap-editor",
"description": "System to create, manage, publish, and sign Common Alerting Protocol alert messages",
"author": {
"email": "shubham@sjain.dev",
"name": "Shubham Jain",
"url": "https://sjain.dev"
},
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"db:create-migration": "prisma migrate dev",
"db:migrate": "prisma migrate deploy",
"start:prod": "prisma migrate deploy && next start",
"lint": "next lint",
"generate-cap-schema": "json2ts cap.schema.json > lib/types/cap.schema.ts && echo '\nexport const CAPV12Schema = ' >> lib/types/cap.schema.ts && cat cap.schema.json >> lib/types/cap.schema.ts",
"postinstall": "prisma generate && lingui compile",
"i18n:extract": "lingui extract",
"i18n:compile": "lingui compile",
"test:api": "docker-compose -f docker-compose-test-api.yml up -d && jest --testPathPattern=tests/api --coverage --coverageDirectory=coverage-api",
"test:e2e": "cross-env NODE_ENV=test docker-compose -f docker-compose-test-e2e.yml up -d && jest --runInBand --testPathPattern=tests/e2e --coverage --coverageDirectory=coverage-e2e --forceExit",
"test:frontend": "jest --testPathPattern=tests/frontend --coverage --coverageDirectory=coverage-frontend",
"docs:dev": "docsify serve docs --port 3001 --open",
"docs:generate": "docsify generate docs"
},
"dependencies": {
"@lingui/core": "^4.4.2",
"@lingui/react": "^4.4.2",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.2.0",
"@rsuite/icons": "^1.0.3",
"@simplewebauthn/browser": "^6.2.2",
"@simplewebauthn/server": "^6.2.2",
"@turf/flip": "^6.5.0",
"@turf/intersect": "^6.5.0",
"@turf/truncate": "^6.5.0",
"capgen": "^1.0.8",
"cookies-next": "^3.0.0",
"fast-xml-parser": "^4.2.7",
"formidable": "^3.5.1",
"iso-639-3": "^3.0.1",
"jsonschema": "^1.4.1",
"luxon": "^3.4.2",
"minio": "^7.1.2",
"next": "13.4.19",
"next-auth": "^4.23.1",
"nodemailer": "^6.9.4",
"ol": "^7.5.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-xml-viewer": "^2.0.0",
"redis": "^4.6.8",
"rsuite": "^5.38.0",
"sharp": "^0.32.5",
"staticmaps": "^1.12.0",
"swr": "^2.2.2",
"timezones.json": "^1.7.1",
"usehooks-ts": "^2.9.1",
"whatwg-mimetype": "^3.0.0",
"xmldsigjs": "^2.5.1"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.11",
"@jest/globals": "^29.6.4",
"@lingui/cli": "^4.4.2",
"@lingui/macro": "^4.4.2",
"@mermaid-js/mermaid-cli": "^10.3.1",
"@simplewebauthn/typescript-types": "^8.0.0",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/formidable": "^3.4.2",
"@types/luxon": "^3.3.1",
"@types/node": "20.5.7",
"@types/nodemailer": "^6.4.9",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@types/redis-mock": "^0.17.1",
"@types/sharp": "^0.32.0",
"@types/staticmaps": "^1.12.1",
"@types/whatwg-mimetype": "^3.0.0",
"babel-jest": "^29.6.4",
"babel-plugin-macros": "^3.1.0",
"cross-env": "^7.0.3",
"docsify-cli": "^4.4.4",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"jest-environment-node": "^29.6.4",
"json-schema-to-typescript": "^13.1.1",
"node-mocks-http": "^1.13.0",
"po-csv": "^1.0.4",
"pptr-testing-library": "^0.7.0",
"prisma": "^5.2.0",
"prisma-dbml-generator": "^0.10.0",
"prisma-erd-generator": "^1.11.1",
"puppeteer": "^21.1.1",
"quoted-printable": "^1.0.1",
"redis-mock": "^0.56.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}