forked from Peter-ChengTszTung/react-native-skygear
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.31 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
45
46
{
"name": "create-react-native-skygear",
"version": "2.0.0",
"description": "Scaffolding for react native with skygear",
"bin": {
"create-react-native-skygear": "./bin/index.js"
},
"scripts": {
"build": "gulp build",
"ci-check": "yarn tsc && yarn lint && prettier --list-different 'src/**/*.ts'",
"format": "prettier --write --list-different 'src/**/*.ts'",
"lint": "gulp lint",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc --noEmit",
"watch": "gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oursky/create-react-native-skygear.git"
},
"author": "Oursky Limited",
"license": "MIT",
"bugs": {
"url": "https://github.com/oursky/create-react-native-skygear/issues"
},
"homepage": "https://github.com/oursky/create-react-native-skygear#readme",
"devDependencies": {
"@types/inquirer": "0.0.43",
"@types/node": "10.9.1",
"@types/semver": "5.5.0",
"gulp": "4.0.0",
"gulp-exclude-gitignore": "1.2.0",
"gulp-tslint": "8.1.3",
"gulp-typescript": "5.0.0-alpha.3",
"prettier": "1.14.2",
"require-dir": "1.0.0",
"tslint": "5.11.0",
"typescript": "3.0.1"
},
"dependencies": {
"commander": "2.19.0",
"envfile": "2.3.0",
"inquirer": "6.2.0",
"semver": "5.6.0"
}
}