-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 892 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 892 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
28
29
30
31
32
33
34
35
36
{
"name": "gemfire-node-sample",
"version": "0.0.1",
"private": true,
"dependencies": {
"express": "^4.16.3",
"express-session": "^1.15.6",
"morgan": "^1.8.1",
"node-pre-gyp": "^0.10.0",
"rimraf": "^2.6.1"
},
"optionalDependencies": {
"gemfire": "^1.0.1"
},
"scripts": {
"start": "nodemon --exec babel-node dist/src/server.js",
"server": "scripts/start.sh",
"build": "babel src --out-dir dist/src && scripts/build.sh",
"test": "node_modules/.bin/mocha --compilers js:@babel/register"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"rewiremock": "^3.13.0",
"supertest": "^3.4.1"
},
"engines": {
"node": "8.x"
}
}