-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.88 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
{
"name": "ncnc",
"version": "1.0.0",
"engines": {
"node": ">=16.8.0"
},
"main": "index.js",
"scripts": {
"dev": "yarn env:dev && next",
"build": "next build",
"start": "next start",
"cypress": "cypress open",
"export": "next export",
"type-check": "tsc",
"eslint": "eslint .",
"test": "jest",
"env:dev": "vercel env pull .env.local --environment preview",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@vercel/analytics": "^1.0.2",
"babel-plugin-styled-components": "^1.12.0",
"css-loader": "^5.0.2",
"cypress": "^9.5.0",
"file-loader": "^6.2.0",
"next": "^15.1.3",
"query-string": "^7.0.0",
"react": "^19.0.0-rc.1",
"react-dom": "^19.0.0-rc.1",
"react-ripples": "^2.2.1",
"react-virtualized-auto-sizer": "^1.0.4",
"react-window": "^1.8.6",
"styled-components": "^6.0.0-beta.2",
"styled-jsx": "^5.1.2",
"styled-reset": "^4.3.4"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/node": "^18.00.00",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-window": "^1.8.2",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.14.1",
"@typescript-eslint/parser": "^6.4.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"jest": "^26.6.3",
"next-bundle-analyzer": "^0.6.7",
"next-pwa": "^5.6.0",
"prettier": "^3.0.2",
"typescript": "^5.1.0"
}
}