-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.41 KB
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": "javascript-rpg",
"version": "1.0.0",
"description": "A simple node RPG game example",
"scripts": {
"build": "babel src -d dist",
"start": "npm run build && node ./dist/app",
"restart": "rimraf dist && npm run start",
"lint": "eslint src/",
"dev": "nodemon --exec npm run restart",
"test": "mocha ./test/**/*.spec.js --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jclark311/javascript-rpg.git"
},
"keywords": [],
"author": "Jon C Clark",
"license": "ISC",
"bugs": {
"url": "https://github.com/jclark311/javascript-rpg/issues"
},
"homepage": "https://github.com/jclark311/javascript-rpg#readme",
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"cors": "^2.8.5",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"body-parser": "^1.19.1",
"cookie-parser": "^1.4.6",
"debug": "^4.3.3",
"dotenv": "^14.3.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"helmet": "^5.0.2",
"http-errors": "^1.8.1",
"morgan": "^1.10.0"
}
}