-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.62 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
{
"name": "mern-template",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "20.9.0"
},
"scripts": {
"start": "node ts-build/server",
"nodemon": "nodemon ts-build/server",
"client": "npm start --prefix ./frontend",
"dev": "concurrently \"npm run nodemon\" \"npm run client\"",
"build-watch": "tsc -w",
"build-tsc": "tsc",
"build-all": "npm run build-tsc && npm run build-static --prefix frontend",
"run-all": "npm run build-tsc && npm run build-static --prefix frontend",
"heroku-postbuild": "npm install --prefix frontend && npm run build-tsc && npm run build-static --prefix frontend"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/spotify-api": "0.0.11",
"axios": "^0.21.4",
"bcryptjs": "^2.4.3",
"concurrently": "^6.2.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.7.0",
"songsterr-api-node": "^1.0.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}