-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.52 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
{
"name": "intent-server",
"version": "1.0.0",
"description": "[![Build Status](https://travis-ci.com/grtlr/intent-server.svg?token=M7qsxhpGdq7xqyuVznBq&branch=master)](https://travis-ci.com/grtlr/intent-server)",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"postinstall": "cd app && yarn install",
"update-env": "conda env update -f environment.yml",
"free-port": "node freeport.js",
"build-env": "yarn install && pipenv install",
"server": "./server.sh debug",
"app": "cd app && yarn start",
"python-bindgen": "quicktype --src app/src/contract/index.ts --src-lang typescript --lang python --out intent_server/vendor/interactions.py || echo 'Please install npm package quicktype globally'",
"bind-contract": "onchange 'app/src/contract/index.ts' -- yarn python-bindgen",
"start": "yarn run free-port && concurrently --kill-others \"yarn run server\" \"yarn run app\" \"yarn run bind-contract\"; "
},
"repository": {
"type": "git",
"url": "git+https://github.com/grtlr/intent-server.git"
},
"author": "Kiran Gadhave",
"license": "MIT",
"bugs": {
"url": "https://github.com/grtlr/intent-server/issues"
},
"homepage": "https://github.com/grtlr/intent-server#readme",
"dependencies": {
"@welldone-software/why-did-you-render": "^3.3.9",
"concurrently": "^4.1.1",
"kill-port": "^1.5.2",
"lodash": "^4.17.15",
"onchange": "^6.1.0",
"react-move": "^6.1.0"
},
"devDependencies": {
"@babel/helper-call-delegate": "^7.8.7"
}
}