-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.09 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.09 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
{
"name": "AnimationTutorial",
"version": "0.0.1",
"scripts": {
"debugTest": "node --inspect-brk node_modules/.bin/jest --runInBand",
"lint": "tslint 'src/**/*.{ts,tsx}'",
"prettier": "prettier --write 'src/**/*.{js,json,jsx,ts,tsx}'",
"prepushtest": "npm run lint && npm run tsc && npm t",
"sim": "react-native run-ios --simulator=\"iPhone 8\"",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"test-ci": "jest -w=2",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"tsc": "tsc --jsx react-native --noEmit"
},
"dependencies": {
"react": "16.8.6",
"react-native": "0.60.4",
"react-native-gesture-handler": "^1.0.15"
},
"devDependencies": {
"@types/react": "^16.7.18",
"@types/react-native": "^0.57.25",
"prettier": "^1.16.4",
"react-native-typescript-transformer": "^1.2.11",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2"
}
}