-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 901 Bytes
/
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
{
"name": "AdaptiveCardsReactNative",
"version": "0.0.1",
"private": true,
"scripts": {
"tsc": "tsc",
"clean": "rimraf artifacts",
"build": "npm run clean && npm run tsc --",
"watch": "npm run clean && start npm run tsc -- -w",
"start:android": "npm run watch && react-native run-android",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "tslint src/**/*.ts"
},
"dependencies": {
"react": "16.3.1",
"react-native": "0.55.1"
},
"devDependencies": {
"@types/jest": "^22.2.2",
"@types/react": "^16.3.5",
"@types/react-native": "^0.52.24",
"babel-jest": "22.4.3",
"babel-preset-react-native": "4.0.0",
"jest": "22.4.3",
"react-test-renderer": "16.3.1",
"rimraf": "^2.6.2",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"jest": {
"preset": "react-native"
}
}