-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.78 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
63
{
"private": true,
"name": "@lffg/rcc-system",
"version": "1.0.0",
"adonis-version": "4.1.0",
"description": "RCC System. By lffg (https://luizfelipe.dev)",
"main": "server.js",
"author": "lffg (https://luizfelipe.dev)",
"license": "Private Software",
"scripts": {
"start": "node server.js",
"test": "node ace test",
"dev": "concurrently --kill-others -p \"[{name}]\" -n \"SERVER,ASSETS\" -c \"bgGreen.bold,bgMagenta.bold\" \"yarn serve:dev\" \"yarn build:dev\"",
"serve": "adonis serve",
"serve:dev": "yarn serve --dev",
"build": "gulp build",
"build:dev": "gulp dev",
"lint": "eslint .",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"@adonisjs/ace": "^5.0.8",
"@adonisjs/auth": "^3.0.7",
"@adonisjs/bodyparser": "^2.0.9",
"@adonisjs/cors": "^1.0.7",
"@adonisjs/fold": "^4.0.9",
"@adonisjs/framework": "^5.0.12",
"@adonisjs/ignitor": "^2.0.8",
"@adonisjs/lucid": "^6.1.3",
"@adonisjs/lucid-slugify": "^1.0.3",
"@adonisjs/mail": "^3.0.9",
"@adonisjs/session": "^1.0.28",
"@adonisjs/shield": "^1.0.8",
"@adonisjs/validator": "^5.0.6",
"fa-icon-list": "^1.0.0",
"got": "^9.6.0",
"lodash": "^4.17.13",
"moment": "^2.24.0",
"pg": "^7.18.1",
"sanitize-html": "^1.20.1",
"shortid": "^2.2.14",
"sprintf-js": "^1.1.2",
"yiq": "^3.0.0"
},
"devDependencies": {
"@adonisjs/cli": "^4.0.9",
"chalk": "^2.4.2",
"concurrently": "^4.0.1",
"eslint": "^7.3.0",
"eslint-config-lffg": "^20.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^6.1.0",
"gulp-cli": "^2.2.0",
"gulp-concat": "^2.6.1",
"gulp-plumber": "^1.2.1",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"node-sass": "^4.12.0"
},
"autoload": {
"App": "./app"
}
}