-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.17 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
{
"name": "todo-app",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "npm run start:dev",
"frontend:dev": "env-cmd -f frontend/.env.dev npm start --prefix frontend",
"backend:dev": "NODE_ENV=\"dev\" npm start --prefix backend",
"start:dev": "concurrently \"npm run frontend:dev\" \"npm run backend:dev\"",
"frontend:test": "env-cmd -f frontend/.env.test npm start --prefix frontend",
"backend:test": "NODE_ENV=\"test\" npm start --prefix backend",
"start:test": "concurrently \"npm run frontend:test\" \"npm run backend:test\"",
"build:prod": "env-cmd -f frontend/.env.prod npm run build --prefix frontend",
"backend:prod": "NODE_ENV=prod npm start --prefix backend",
"start:build:local": "concurrently \"serve -s build/frontend\" \"npm run backend:prod\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/sowmenappd/todo-app.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/sowmenappd/todo-app/issues"
},
"homepage": "https://github.com/sowmenappd/todo-app#readme",
"description": "",
"devDependencies": {
"concurrently": "^6.0.0"
}
}