-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "convnet-shape-calculator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint:nofix": "next lint --strict --dir 'src/'",
"lint": "yarn lint:nofix --fix",
"lint:ci": "yarn lint:nofix",
"fmt:nofix": "yarn prettier 'src/'",
"fmt": "yarn fmt:nofix --write",
"fmt:ci": "yarn fmt:nofix --check",
"test": "vitest",
"test:ci": "yarn vitest run",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hello-pangea/dnd": "^16.2.0",
"@types/node": "18.14.1",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.35.0",
"eslint-config-next": "13.2.1",
"neverthrow": "^6.0.0",
"next": "13.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-overlays": "^5.2.1",
"react-responsive": "^9.0.2",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitest/coverage-c8": "^0.29.1",
"eslint-plugin-react": "^7.32.2",
"happy-dom": "^8.9.0",
"prettier": "^2.8.4",
"typescript": "^5.1.3",
"vitest": "^0.29.1"
},
"engines": {
"node": "18"
}
}