-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.03 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.03 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
{
"name": "twitter-replica",
"version": "1.0.0",
"description": "Entry point for backend and frontend",
"scripts": {
"start": "npm run start:backend & npm run start:frontend",
"start:app:dev": "npm run start:app:dev --prefix ./twitter-replica-backend & npm run start:frontend",
"start:backend": "npm run start --prefix ./twitter-replica-backend",
"start:frontend": "npm run start --prefix ./twitter-replica-ui",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "npm run lint --prefix ./twitter-replica-backend",
"lint:frontend": "npm run lint --prefix ./twitter-replica-ui",
"postinstall": "node ./tools/checkForDependencies"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yarharm/Twitter-replica.git"
},
"author": "Yaroslav Harmatyuk",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yarharm/Twitter-replica/issues"
},
"homepage": "https://github.com/Yarharm/Twitter-replica#readme",
"dependencies": {
"concurrently": "^5.1.0"
}
}