-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "marquinhos-web-api",
"version": "1.0.0",
"description": "Marquinhos API",
"main": "dist",
"dependencies": {
"axios": "^1.4.0",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"eslint": "^8.47.0",
"express": "^4.18.2",
"mongodb": "^5.1.0",
"mongoose": "^7.4.3",
"morgan": "^1.10.0",
"spotify-web-api-node": "^5.0.2",
"tslib": "^2.6.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.17",
"@types/mongodb": "^4.0.7",
"@types/morgan": "^1.9.4",
"@types/node": "^18.17.5",
"@types/spotify-web-api-node": "^5.0.10",
"typescript": "5.1.6"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "npm run build && npm run start",
"test": "tsc && ./node_modules/.bin/mocha dist/**/*.spec.js",
"lint": "tslint 'src/**/*.ts' --fix",
"clean": "rm -rf dist/ .logs/",
"start": "node dist"
},
"author": "Devaneios",
"license": "ISC"
}