forked from madhanganesh/taskpad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.6 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "taskpad",
"version": "0.0.1",
"description": "app to enter your daily tasks and tag them",
"main": "index.js",
"watch": {
"test-e2e": {
"patterns": [
".",
"api-spec"
],
"extensions": "js, feature, go",
"quite": true
}
},
"scripts": {
"start": "POSTGRES_CONNECTION_STRING='user=madhanganesh dbname=taskpad sslmode=disable' AUTH0_DOMAIN=minisoft-dev.auth0.com AUTH0_AUDIENCE=taspad-dev-api-aud AUTH0_CLIENT_ID=qdNfCxioUe5ZK6Tz1hwkNS0zW88njitb AUTH0_CALLBACK=http://localhost:8080 gin --notifications --bin taskpad -a 8080 -i run *.go",
"test:e2e": "mocha --no-timeouts",
"watch": "npm-watch",
"deploy": "gcloud app deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madhanganesh/taskpad.git"
},
"keywords": [
"taskpad",
"golang",
"reactjs"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/madhanganesh/taskpad/issues"
},
"homepage": "https://github.com/madhanganesh/taskpad#readme",
"devDependencies": {
"@types/assert": "^1.4.1",
"@types/axios": "^0.14.0",
"@types/cucumber": "^4.0.4",
"@types/expect": "^1.20.3",
"@types/mocha": "^5.2.5",
"@types/moment": "^2.13.0",
"@types/superagent": "^3.8.6",
"@types/supertest": "^2.0.7",
"assert": "^1.4.1",
"cucumber": "^5.1.0",
"expect": "^23.6.0",
"mocha": "^5.2.0",
"npm-watch": "^0.5.0",
"superagent": "^4.1.0",
"supertest": "^3.4.1"
},
"dependencies": {
"axios": "^0.18.0",
"moment": "^2.23.0",
"pg": "^7.8.0"
}
}