-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 loc) · 943 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
35
36
{
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"changelog": "lerna-changelog",
"lerna:changed": "lerna changed",
"lerna:publish": "lerna publish",
"lerna:version": "lerna version",
"lint": "eslint packages/create-full-stack/src/**/*.ts --fix",
"prettier": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,graphql,json,md,yaml,yml,html,css}": "prettier --write",
"src/**.{ts,tsx}": "eslint --fix"
},
"devDependencies": {
"@babel/core": "*",
"@unimodules/core": "~5.5.0",
"expo-application": "~2.3.0",
"expo-auth-session": "~2.0.0",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lerna-changelog": "^1.0.1",
"lint-staged": "^10.3.0",
"react": "~16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.2.tar.gz"
}
}