-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"name": "mlir-playground",
"version": "0.2.0",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"postinstall": "./prepare.sh",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"test": "jest"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.213.0",
"@cfworker/json-schema": "^1.12.5",
"@chakra-ui/react": "^1.8.6",
"@monaco-editor/react": "^4.3.1",
"ajv": "^6.12.6",
"clipboard-copy": "^4.0.1",
"idb-keyval": "^6.2.0",
"next": "12.1.0",
"next-image-export-optimizer": "^0.9.6",
"next-plausible": "^3.5.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.4.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.19.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.0.0",
"@types/file-saver": "^2.0.5",
"@types/node": "17.0.23",
"@types/react": "17.0.42",
"babel-jest": "^29.2.1",
"babel-plugin-transform-import-meta": "^2.2.0",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"file-loader": "^6.2.0",
"file-saver": "^2.0.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.2.0",
"jest-environment-jsdom": "^29.2.0",
"json-schema-to-ts": "^2.5.5",
"json-schema-to-typescript": "^11.0.2",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "4.6.2"
}
}