-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 946 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 946 Bytes
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
{
"name": "checker-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "rm -rf .tmp-test-dist && tsc -p tsconfig.tests.json && node --test .tmp-test-dist/tests/**/*.test.js",
"oracle": "npx tsx scripts/oracle.ts"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@types/crypto-js": "^4.2.2",
"cross-fetch": "^4.0.0",
"crypto-js": "^4.2.0",
"gsap": "^3.14.1",
"next": "12.3.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^8.0.7",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@types/node": "14.18.63",
"@types/react": "17.0.69",
"@types/react-dom": "17.0.22",
"eslint": "8.57.0",
"eslint-config-next": "12.3.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^10.5.0",
"typescript": "4.9.5"
}
}