-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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
{
"author": "Dmitry Kutin <[email protected]>",
"name": "affinity",
"description": "Authentication server for Spotify affinity.",
"version": "1.0.0",
"main": "server.js",
"repository": "[email protected]:dkutin/affinity.git",
"private": true,
"license": "MIT",
"dependencies": {
"concurrently": "^5.2.0",
"cookie-parser": "^1.4.5",
"core-util-is": "^1.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http": "^0.0.1-security",
"querystring": "~0.2.0",
"request": "^2.88.2"
},
"scripts": {
"client:install": "yarn --cwd ./client install",
"client:build": "yarn --cwd ./client build",
"start": "node server.js",
"server": "nodemon server.js",
"client": "yarn --cwd ./client start",
"dev": "concurrently \"yarn server\" \"yarn client\"",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "yarn client:install && yarn client:build"
},
"engines": {
"node": "15.5.0",
"yarn": "1.22.10",
"npm": "7.3.0"
},
"devDependencies": {
"cryptiles": "^4.1.2",
"nodemon": "^2.0.7"
}
}