-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.11 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
{
"name": "@3dverse/3dfilestore-web",
"version": "0.1.0",
"private": true,
"description": "3dverse's test application for potential recruits.",
"keywords": [
"3dverse",
"nextjs",
"react",
"test",
"typescript"
],
"bugs": {
"url": "https://gitlab.com/3dverse/corp/challenges/3dfilestore-web/issues"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/3dverse/corp/challenges/3dfilestore-web.git"
},
"license": "Apache-2.0",
"author": "3dverse Platform Team",
"files": [
".next/",
"public/",
"next.config.js"
],
"scripts": {
"build": "run-s clean build:compile",
"build:compile": "next build",
"build:export": "next export",
"clean": "rimraf .next/ coverage/ out/ package/ activities-*.tgz *.tsbuildinfo",
"lint": "run-p lint:eslint lint:tsc",
"lint:eslint": "eslint --ext ts,tsx src",
"lint:tsc": "tsc --noEmit",
"prepare": "husky install",
"start": "next start",
"start:debug": "NODE_OPTIONS=\"--inspect --max_old_space_size=4096\" next dev",
"start:w": "NODE_OPTIONS=--max_old_space_size=4096 next dev",
"version": "node --print process.env.npm_package_version"
},
"dependencies": {
"axios": "1.3.5",
"bytes": "3.1.2",
"daisyui": "2.51.5",
"date-fns": "2.29.3",
"lodash.clonedeep": "4.5.0",
"next": "13.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.8.0",
"tailwind-merge": "1.12.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@types/bytes": "^3.1.1",
"@types/lodash.clonedeep": "^4.5.7",
"@types/node": "^18.15.11",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.22",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"rimraf": "^5.0.0",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18"
}
}