-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 723 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 723 Bytes
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
{
"name": "Simple-React-Native-Hot-Code-Push-Server",
"version": "1.0.0",
"description": "using express and node.js to build a server to provide management of patches of react-native js bundle.",
"main": "index.js",
"scripts": {
"server":"node index",
"test": "node test"
},
"repository": {
"type": "git",
"url": "https://git.coding.net/marcusma/myExpressServer.git"
},
"author": "Marucs Ma",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"express-session": "^1.14.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1"
}
}