-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.65 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "MyFramework",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch 'src/**' --ext 'ts,json' --ignore 'src/**/*.spec.ts' --exec 'ts-node src/index.ts'",
"build": "tsc && echo Warning, you need to move all your files not located in resources to build folder",
"start": "node build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hugo-Persson/MyFramework.git"
},
"keywords": [],
"author": "Hugo Persson",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hugo-Persson/MyFramework/issues"
},
"homepage": "https://github.com/Hugo-Persson/MyFramework#readme",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/formidable": "^1.0.32",
"@types/jsonwebtoken": "^8.5.0",
"@types/mysql": "^2.15.15",
"@types/node": "^14.11.8",
"@types/pug": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"typescript": "^3.3.3"
},
"dependencies": {
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"formidable": "^1.2.2",
"jsonwebtoken": "^8.5.1",
"mariadb": "^2.5.1",
"mime-types": "^2.1.27",
"module-alias": "^2.2.2",
"pug": "^3.0.0"
},
"_moduleAliases": {
"@controllers": "build/controllers",
"@lib": "build/lib",
"@models": "build/models",
"@views": "build/views"
}
}