-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1021 Bytes
/
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
{
"name": "technical-challenge",
"version": "1.0.0",
"description": "Setup for my technical challenge at Granular",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node ./src/index.js",
"watch": "npm-watch",
"test": "./node_modules/.bin/mocha --require @babel/register",
"debug": "node --inspect-brk ./dist/index.js"
},
"watch": {
"test": "**/*.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.2",
"chai": "^4.2.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"npm-watch": "^0.6.0",
"prettier": "^1.18.2"
},
"dependencies": {
"babel-preset-es2015-node5": "^1.1.0",
"lodash": "^4.17.15"
},
"bin": {
"index": "./src/index.js"
}
}