-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 934 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": "client-connector",
"version": "1.0.0",
"description": "An application to contact users via SMS using Twilio APIs",
"main": "index.js",
"scripts": {
"install": "cd server && npm install && cd ../client && npm install",
"postinstall": "cd server && npm install --only=dev",
"start": "concurrently \"cd server && npm start\" \"cd client && npm start\"",
"build": "cd client && npm run build",
"a": "echo \"a\"",
"b": "echo \"b\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/BOLT04/client-connector.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/BOLT04/client-connector/issues"
},
"homepage": "https://github.com/BOLT04/client-connector#readme",
"dependencies": {
"concurrently": "^5.1.0"
},
"devDependencies": {
"husky": "^6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "1"
}
}
}