-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.02 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.02 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
{
"name": "songswipe",
"version": "0.0.1",
"description": "",
"scripts": {
"start": "npx tsc && ./node_modules/.bin/netlify-lambda serve build",
"dev": "npx tsc && concurrently \"http-server ./dist/\" \"./node_modules/.bin/netlify-lambda serve build\"",
"build": "npx tsc && ./node_modules/.bin/netlify-lambda build build",
"windows": "npx tsc && concurrently \"http-server ./dist/\" \".\\node_modules\\.bin\\netlify-lambda.cmd serve build\"",
"test": "jest"
},
"dependencies": {
"@netlify/functions": "^3.0.1",
"@spotify/web-api-ts-sdk": "^1.2.0",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"concurrently": "^9.1.2",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"netlify-lambda": "^2.0.16",
"serverless-http": "^3.2.0",
"ts-jest": "^29.2.6",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/node": "^22.13.9",
"tsx": "^4.19.2"
}
}