-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 971 Bytes
/
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
{
"name": "nexpress-social",
"version": "1.0.0",
"description": "a sample social media application using next.js + express.js",
"main": "index.js",
"scripts": {
"start-ui": "cd web && yarn dev",
"start-server": "cd api && yarn dev",
"start": "npm-run-all --parallel start-ui start-server",
"test": "echo \"Error: no test specified\" && exit 1",
"bootstrap": "yarn && lerna bootstrap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junibrosas/nextjs-express-socialmedia.git"
},
"keywords": [
"nextjs",
"express",
"react",
"ssr"
],
"author": "Juni Brosas <https://github.com/junibrosas>",
"license": "ISC",
"bugs": {
"url": "https://github.com/junibrosas/nextjs-express-socialmedia/issues"
},
"homepage": "https://github.com/junibrosas/nextjs-express-socialmedia#readme",
"dependencies": {
"lerna": "^3.13.4"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}