forked from gonetwork-project/gonetwork-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.37 KB
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
{
"name": "go-network-app",
"version": "0.0.1",
"private": true,
"scripts": {
"compile": "rm -rf lib/ && node_modules/typescript/bin/tsc --declaration",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "node_modules/tslint/bin/tslint -c tslint.json 'src/**/*.ts'",
"lint-js": "node node_modules/standard/bin/cmd 'src/state-channel/**/*.js' 'test/**/*.js' 'demo/**/*.js'",
"watch": "rm -rf lib/ && node_modules/typescript/bin/tsc --watch"
},
"dependencies": {
"assert": "^1.4.1",
"buffer": "^5.1.0",
"ethereumjs-util": "^5.2.0",
"go-network-framework": "^0.1.1",
"node-libs-browser": "^2.1.0",
"process": "^0.11.10",
"react": "16.3.1",
"react-native": "0.55.2",
"react-native-camera": "^1.1.4",
"react-native-keychain": "^3.0.0-rc.3",
"react-native-paho-mqtt": "*",
"react-native-securerandom": "^0.1.1",
"react-native-vector-icons": "^4.6.0"
"rxjs": "^5.5.11"
},
"devDependencies": {
"@types/react": "^16.3.1",
"@types/react-native": "^0.55.2",
"babel-jest": "22.4.3",
"babel-preset-react-native": "4.0.0",
"jest": "22.4.3",
"react-test-renderer": "16.3.1",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.0.0",
"types-ethereumjs-util": "0.0.8",
"typescript": "^2.8.3"
},
"jest": {
"preset": "react-native"
}
}