-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.48 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
{
"name": "lambda-calculus-playground",
"version": "1.1.0",
"description": "App that provides a visual interface for creating and evaluating lambda calculus expressions",
"main": "index.js",
"scripts": {
"start": "node_modules/react-native/packager/packager.sh",
"test": "jest",
"flow": "flow",
"reflow": "flow stop; flow",
"check": "flow; jest;:",
"gen-types": "babel-node tools/generateTypesCli.js",
"android": "adb reverse tcp:8081 tcp:8081; react-native run-android --open=\"`pwd`/tools/RunServer.app\"",
"pwd": "echo `pwd`",
"gen-images": "python ./img_src/build.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alangpierce/LambdaCalculusPlayground.git"
},
"author": "Alan Pierce",
"license": "MIT",
"bugs": {
"url": "https://github.com/alangpierce/LambdaCalculusPlayground/issues"
},
"homepage": "https://github.com/alangpierce/LambdaCalculusPlayground#readme",
"dependencies": {
"babel-cli": "^6.7.7",
"immutable": "^3.8.1",
"react": "0.14.5",
"react-addons-shallow-compare": "^0.14.5",
"react-native": "^0.25.1",
"react-native-cli": "^0.2.0",
"react-native-dialogs": "0.0.15",
"react-native-vector-icons": "2.0.3",
"react-redux": "^4.4.5",
"redux": "^3.5.1"
},
"devDependencies": {
"babel-jest": "^12.0.1",
"babel-polyfill": "^6.7.4",
"flow-bin": "0.26.0",
"jest-cli": "^12.0.1",
"react-addons-perf": "^0.14.5",
"svgexport": "^0.3.2"
}
}