-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1 KB
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
{
"name": "conduit-realworld-example-app",
"version": "1.0.0",
"description": "> ### React / Express.js / Sequelize codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.",
"main": "index.js",
"scripts": {
"start": "npm run build -w frontend && npm run start -w backend",
"dev": "concurrently \"npm run dev -w backend\" \"npm run start -w frontend\"",
"test": "concurrently \"npm test -w backend\" \"npm test -w frontend\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TonyMckes/conduit-realworld-example-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TonyMckes/conduit-realworld-example-app/issues"
},
"homepage": "https://github.com/TonyMckes/conduit-realworld-example-app#readme",
"workspaces": [
"backend",
"frontend"
],
"devDependencies": {
"concurrently": "^7.3.0"
}
}