-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.67 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.67 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": "4gaboards-server",
"private": true,
"main": "app.js",
"scripts": {
"console": "dotenv sails console",
"db:init": "node db/init.js",
"db:migrate": "knex migrate:latest --cwd db",
"db:rollback": "knex migrate:rollback --cwd db",
"db:migration_make": "knex migrate:make new_migration --cwd db",
"db:seed": "knex seed:run --cwd db",
"lint": "eslint . --max-warnings=0 && echo '✔ Files lint completed successfully!'",
"start": "nodemon",
"start:prod": "node app.js --prod",
"test": "mocha test/lifecycle.test.js test/integration/**/*.test.js test/utils/**/*.test.js"
},
"dependencies": {
"@azure/msal-node": "^3.7.3",
"bcrypt": "^6.0.0",
"dotenv": "^17.2.2",
"dotenv-cli": "^10.0.0",
"fast-csv": "^5.0.5",
"filenamify": "^6.0.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"move-file": "^3.1.0",
"passport": "^0.7.0",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0",
"passport-strategy": "^1.0.0",
"rimraf": "^6.0.1",
"sails": "^1.5.15",
"sails-hook-orm": "^4.0.3",
"sails-hook-sockets": "^3.0.2",
"sails-postgresql": "^5.0.1",
"sharp": "^0.34.3",
"tar": "^7.4.3",
"uuid": "^13.0.0",
"validator": "^13.15.15",
"winston": "^3.17.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"chai": "^6.0.1",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"mocha": "^11.7.2",
"nodemon": "^3.1.10"
},
"engines": {
"node": "^22.14"
},
"pnpm": {
"onlyBuiltDependencies": [
"bcrypt",
"sharp"
]
}
}