-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.38 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
53
{
"name": "crate-stats",
"version": "1.0.0",
"description": "website for cratestats.com",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm start\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcusmcb/crate-stats.git"
},
"keywords": [
"javascript",
"react",
"express",
"serato",
"data-science",
"data-analysis"
],
"author": "Marcus McBride",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcusmcb/crate-stats/issues"
},
"homepage": "https://github.com/marcusmcb/crate-stats#readme",
"dependencies": {
"axios": "^0.26.1",
"body-parser": "^1.20.0",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.10",
"concurrently": "^7.1.0",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^16.0.3",
"express": "^4.17.3",
"firebase": "^9.16.0",
"firebase-admin": "^11.5.0",
"moment": "^2.29.3",
"nodemon": "^2.0.15",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.3",
"styled-components": "^5.3.6"
},
"engines": {
"node": "18.x",
"npm": "8.x"
}
}