-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.29 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
{
"name": "band-dot-rand",
"version": "1.0.0",
"description": "Discover a new band. Or six.",
"main": "main.js",
"engines": {
"node": "12.x"
},
"scripts": {
"start": "node dist/main.js",
"dev": "nodemon src/main.ts",
"build": "tsc -p .",
"postinstall": "tsc",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix dist/client/frontend && npm run build --prefix dist/client/frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gavischneider/band-dot-rand.git"
},
"author": "Gavi Schneider",
"license": "ISC",
"bugs": {
"url": "https://github.com/gavischneider/band-dot-rand/issues"
},
"homepage": "https://github.com/gavischneider/band-dot-rand#readme",
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.13",
"@types/axios": "^0.14.0",
"@types/express": "^4.17.8",
"@types/node": "^14.14.6",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"nodemon": "^2.0.6",
"react-elastic-carousel": "^0.9.5",
"spotify-web-api-node": "^5.0.0",
"ts-node": "^9.0.0",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
}
}