-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.3 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
{
"name": "earningsvibe",
"version": "1.0.0",
"main": "build/backend/index.js",
"repository": "https://github.com/oze4/earningsvibe.git",
"author": "Matt Oestreich <[email protected]>",
"license": "MIT",
"scripts": {
"start:front": "yarn --cwd frontend start",
"build:front": "yarn --cwd frontend build && echo 'earningsvibe.com' >> docs/CNAME",
"install:front": "yarn --cwd frontend install",
"start:back": "nodemon --watch 'backend' --exec 'ts-node' --project backend/tsconfig.json --log-error backend/src/index.ts",
"build:back": "tsc --project backend/tsconfig.json",
"build": "yarn build:back",
"start:dev": "yarn build && node build/backend/index.js",
"start": "node build/backend/index.js",
"format": "prettier --write \"**/*.+(js|jsx|json|css|md)\""
},
"dependencies": {
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/helmet": "^4.0.0",
"@types/node": "^14.14.35",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"got": "^11.8.2",
"helmet": "^4.4.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"devDependencies": {
"eslint": "^7.21.0",
"prettier": "^2.2.1"
}
}