forked from transitmatters/regional-rail-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.38 KB
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
78
79
80
{
"name": "@transitmatters/expansion-explorer",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:prod": "NODE_OPTIONS='--max-old-space-size=1536' NEXT_DISABLE_TYPECHECK=1 next build",
"start": "next start -p $PORT",
"storybook": "storybook dev -p 6006 -c .storybook",
"lint": "eslint src",
"typecheck": "tsc",
"check": "npm run lint && npm run typecheck",
"install-git-hooks": "rm -f ./.git/hooks/* && cp ./.githooks/* ./.git/hooks && chmod +x ./.git/hooks/*"
},
"dependencies": {
"@ariakit/react": "^0.4.15",
"@ridi/object-case-converter": "^2.0.4",
"bezier-js": "^6.1.4",
"classnames": "^2.5.1",
"csv-parse": "^4.12.0",
"device-detector-js": "^3.0.3",
"fast-memoize": "^2.5.2",
"flatted": "^3.3.3",
"heap": "^0.2.7",
"next": "^15.3.3",
"query-string": "^9.1.1",
"random": "^5.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"sass": "^1.85.0",
"sharp": "^0.33.5",
"smoothscroll-polyfill": "^0.4.4",
"tar": "^6.1.15",
"tmp": "^0.2.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@storybook/addon-actions": "^8.5.8",
"@storybook/addon-controls": "^8.5.8",
"@storybook/addon-viewport": "^8.5.8",
"@storybook/core-events": "^8.5.8",
"@storybook/manager-api": "^8.5.8",
"@storybook/nextjs": "^8.5.8",
"@storybook/react": "^8.5.8",
"@types/bezier-js": "4.1.3",
"@types/heap": "^0.2.34",
"@types/node": "^22.13.5",
"@types/react": "^18.3.1",
"@types/smoothscroll-polyfill": "^0.3.4",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"ajv": "^8.17.1",
"babel-loader": "^9.2.1",
"babel-preset-react-app": "^10.1.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-next": "^15.3.3",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-deprecate": "^0.8.5",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-storybook": "^0.11.3",
"prettier": "^3.5.1",
"sass-loader": "^16.0.5",
"storybook": "^8.5.8",
"style-loader": "^4.0.0",
"typescript": "~5.7.3"
},
"engines": {
"node": ">=22.3.0",
"npm": ">=10.3.0"
},
"volta": {
"node": "22.15.0"
}
}