-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "imaginext",
"version": "0.0.4-beta.2",
"description": "Next.js visualizer tool to display file structure",
"repository": "oslabs-beta/imaginext",
"license": "MIT",
"homepage": "https://github.com/oslabs-beta/imaginext",
"private": false,
"bin": {
"imaginext": "./cli.js"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "rm -rf dist",
"test": "jest",
"buildnpm": "tsc -p tsconfig-npm.json && cp package.json README.md LICENSE cli.js next.config.js next-env.d.ts ./dist && cp -R ./styles ./dist/styles && cp -R ./public/ ./dist/public"
},
"dependencies": {
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@typescript-eslint/typescript-estree": "^5.44.0",
"estree-walker": "3.0.1",
"next": "13.0.4",
"react": "18.2.0",
"react-d3-tree": "^3.3.5",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"cypress": "^12.5.0",
"eslint": "^8.33.0",
"eslint-config-next": "^13.1.6",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
}
}