forked from sandoche/Terminhack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.7 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.7 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "terminhack",
"description": "Impress your friends by pretending to be a real hacker",
"version": "1.0.0",
"engines": {
"node": "14.x"
},
"repository": {
"type": "git",
"url": "https://github.com/sandoche/Terminhack.git"
},
"keywords": [
"hacking",
"terminal-hacking",
"hack-movie",
"hacker-movie",
"fake-hacking",
"kali",
"nmap",
"metasploit"
],
"author": "Sandoche Adittane",
"license": "MIT",
"bugs": {
"url": "https://github.com/sandoche/Terminhack/issues"
},
"homepage": "https://terminhack.learn.uno",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/dev -e js,twig --exec babel-node --presets es2015,env",
"transpile": "babel --presets es2015,env -d ./build ./src -s",
"copy-assets": "cp -r ./src/data ./build",
"clean": "rm -rf build && mkdir build",
"build": "npm run clean && npm run transpile && npm run copy-assets",
"lint": "eslint \"**/*.{js,ts}\" --quiet --fix"
},
"dependencies": {
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"js-yaml": "^4.0.0",
"morgan": "~1.9.1"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"eslint": "^7.21.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"nodemon": "^2.0.7"
}
}