-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 879 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
{
"name": "levelup-games",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles",
"build": "babel src -d public",
"start": "nodemon --exec babel-node src/index.js",
"pretest": "eslint --ignore-pattern 'public/*' --ignore-pattern 'node_modules/*' --ignore-pattern 'test/*'",
"lint:fix": "eslint --fix src/*"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.9.6",
"axios": "^0.19.2",
"babel-preset-env": "^1.7.0",
"eslint": "^7.0.0",
"eslint-config-strongloop": "^2.1.0",
"jest": "^26.0.1",
"nodemon": "^2.0.4"
},
"dependencies": {
"@hapi/hapi": "^19.1.1",
"dotenv": "^8.2.0"
}
}