forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.45 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@expo/next-adapter",
"version": "2.0.5",
"description": "Adapter for using Next.js with Unimodules",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"prepare": "yarn run clean && yarn build",
"clean": "rm -rf build ./tsconfig.tsbuildinfo",
"lint": "eslint ."
},
"bin": {
"next-expo": "./build/cli/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git",
"directory": "packages/next-adapter"
},
"keywords": [
"expo",
"expo-web",
"json",
"next",
"react",
"react-native",
"react-dom",
"react-native-web"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/expo-cli/issues"
},
"homepage": "https://github.com/expo/expo-cli/tree/master/packages/next-adapter#readme",
"files": [
"babel",
"customize",
"template",
"build",
"document.js",
"service-worker.js"
],
"devDependencies": {
"@expo/babel-preset-cli": "^0.2.5"
},
"peerDependencies": {
"next": "^9",
"react": "^16",
"react-native-web": "^0.11.7"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@expo/package-manager": "0.0.5",
"@expo/webpack-config": "0.11.1",
"@types/next": "^8.0.6",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"enquirer": "^2.3.2",
"fs-extra": "^8.1.0",
"update-check": "^1.5.3"
}
}