-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.58 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
{
"name": "node-gigya-boilerplate",
"version": "1.0.0",
"description": "Boilerplate Node.js App using the Gigya accountJS Raas service",
"main": "index.js",
"engineStrict": true,
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --exec \"npm run test:all && babel-node src/index.js\"",
"build": "babel src -d dist && mkdir -p dist/views && cp -a src/views/. dist/views/.",
"lint": "eslint .",
"test": "concurrently 'npm start' 'npm run test:all && npm stop' || true",
"test:all": "npm run test:unit && npm run test:e2e && npm run lint",
"test:e2e": "chimp --browser=phantomjs",
"test:unit": "mocha --compilers js:babel-register",
"stop": "killall -0 -SIGINT node"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/maxmckenzie/node-gigya-boilerplate.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxmckenzie/node-gigya-boilerplate/issues"
},
"homepage": "https://github.com/maxmckenzie/node-gigya-boilerplate#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.24.0",
"chimp": "0.45.1",
"concurrently": "^3.4.0",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"nodemon": "^1.11.0",
"supertest": "^3.0.0"
},
"dependencies": {
"ejs": "^2.5.6",
"express": "^4.15.2"
}
}