forked from expo/snack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.29 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "snack-modules-packager",
"version": "1.0.0",
"main": "build/index.js",
"license": "MIT",
"scripts": {
"start": "REDIS_ENVIRONMENT=staging scripts/dev.sh",
"start:production": "REDIS_ENVIRONMENT=production scripts/dev.sh",
"build": "tsc --project tsconfig.build.json",
"debug": "kubectl.1.15 --context=minikube port-forward deploy/snackager 9229",
"test": "env-cmd -e test node --async-stack-traces node_modules/.bin/jest --config jest/unit.config.js",
"test:e2e": "env-cmd -e test node --async-stack-traces node_modules/.bin/jest --config jest/e2e.config.js",
"bundle": "env-cmd -e test tsnd --quiet --async-stack-traces -- src/cli.ts",
"lint": "tsc --noEmit && eslint ."
},
"dependencies": {
"@babel/core": "^7.23.6",
"@babel/generator": "^7.23.6",
"@babel/plugin-transform-export-namespace-from": "7.23.4",
"@babel/plugin-transform-runtime": "^7.23.6",
"@babel/plugin-transform-template-literals": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.23.6",
"@expo/config": "^8.5.4",
"@expo/spawn-async": "^1.7.2",
"aws-sdk": "^2.487.0",
"babel-loader": "^8.2.5",
"bunyan": "^1.8.12",
"bunyan-middleware": "^1.0.0",
"cors": "^2.8.5",
"enhanced-resolve": "^4.1.1",
"escape-string-regexp": "^1.0.5",
"express": "^4.17.1",
"form-data": "^2.4.0",
"git-url-parse": "^11.2.0",
"hasha": "^3.0.0",
"image-size": "^0.5.4",
"json5": "^1.0.1",
"lodash": "^4.17.11",
"md5": "^2.2.1",
"memory-fs": "^0.4.1",
"@react-native/babel-preset": "^0.73.19",
"node-fetch": "^2.6.0",
"picomatch": "^4.0.1",
"querystring": "^0.2.0",
"raven": "^2.6.4",
"react-native-reanimated": "~3.6.0",
"redis": "^3.0.2",
"rimraf": "^2.6.3",
"sander": "^0.6.0",
"semver": "^5.3.0",
"semver-utils": "^1.1.4",
"snack-content": "~3.1.0",
"snack-require-context": "*",
"snack-sdk": "~6.1.0",
"source-map-support": "^0.4.15",
"targz": "^1.0.1",
"validate-npm-package-name": "^3.0.0",
"webpack": "^5.40.0"
},
"devDependencies": {
"@google-cloud/secret-manager": "^5.0.1",
"@tsconfig/node16": "^1.0.2",
"@types/cors": "^2.8.8",
"@types/enhanced-resolve": "^3.0.6",
"@types/escape-string-regexp": "^1.0.0",
"@types/express": "^4.17.8",
"@types/git-url-parse": "^9.0.0",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.15",
"@types/json5": "^0.0.30",
"@types/loader-utils": "^1.1.4",
"@types/lodash": "^4.14.164",
"@types/memory-fs": "^0.3.2",
"@types/node": "^16.11.26",
"@types/node-fetch": "^2.5.7",
"@types/raven": "^2.5.3",
"@types/redis": "^2.8.28",
"@types/semver": "^7.3.4",
"@types/supertest": "^2.0.10",
"@types/targz": "^1.0.0",
"@types/validate-npm-package-name": "^3.0.0",
"@types/webpack": "^5.28.0",
"eslint": "^8.49.0",
"eslint-config-universe": "^12.0.0",
"glob": "^7.1.6",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.0.3",
"supertest": "^6.1.3",
"ts-jest": "^29.1.2",
"ts-node-dev": "^1.1.1",
"typescript": "^5.3.3"
},
"eslintConfig": {
"extends": "universe/node",
"ignorePatterns": [
"build"
]
},
"volta": {
"node": "18.17.1",
"npm": "6.14.16",
"yarn": "1.22.4"
}
}