-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.61 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
{
"name": "powdercast",
"version": "2.1.0",
"private": true,
"engines": {
"node": ">=20.19.0",
"yarn": ">=1.22.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate:pwa-icons": "node scripts/generate-pwa-icons.js",
"test:ride-score": "TS_NODE_PROJECT=tsconfig.test.json ts-node tests/ride-score.test.ts",
"test:processing": "TS_NODE_PROJECT=tsconfig.test.json ts-node tests/nwsProcessing.test.ts",
"test": "yarn test:processing && yarn test:ride-score && yarn test:units && yarn test:elevation && yarn test:schema",
"test:providers": "TS_NODE_PROJECT=tsconfig.test.json ts-node tests/providers.test.ts",
"build:resorts": "node scripts/build-resorts.js",
"verify:passes": "node scripts/build-resorts.js --check",
"test:units": "TS_NODE_PROJECT=tsconfig.test.json ts-node tests/units-and-planner.test.ts",
"test:elevation": "TS_NODE_PROJECT=tsconfig.test.json ts-node tests/elevation.test.ts",
"test:schema": "TS_NODE_PROJECT=tsconfig.test.json ts-node tests/resortSchema.test.ts"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "^15.1.6",
"postcss": "^8.4.49",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5"
}
}