-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 818 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 818 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
{
"name": "azuradev-bot",
"version": "1.0.0",
"description": "Example Node Server w/ Babel",
"main": "dist/index.js",
"scripts": {
"dev": "babel-node src/index.js",
"build": "babel src -d dist",
"start": "npm run build && node .",
"lint": "eslint \"**/*.js\"",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && mocha --require @babel/register"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.8.3",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^5.2.0",
"nodemon": "^1.17.5"
},
"dependencies": {
"dotenv": "^8.2.0"
}
}