-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.08 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
{
"name": "twitter-user-search-interface",
"version": "1.0.0",
"description": "twitter-user-search-interface",
"main": "index.js",
"scripts": {
"client-server:install": "npm install && cd client && npm install && cd .. && cd server && npm install",
"client-server:build": "npm run client-build && npm run server-build",
"client-build": "cd client && npm run build",
"server-build": "cd server && npm run tsc",
"client-server:start": "concurrently --kill-others \"npm run client:start\" \"npm run server:start\"",
"client:start": "cd client && npm start",
"server:start": "cd server && npm start",
"test": "mocha server/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maddy2894/twitter-user-search-interface.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/maddy2894/twitter-user-search-interface/issues"
},
"homepage": "https://github.com/maddy2894/twitter-user-search-interface#readme",
"dependencies": {
"concurrently": "^5.2.0",
"mocha": "^8.1.1"
}
}