This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathpackage.json
103 lines (103 loc) · 3.23 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "generator-feathers",
"description": "A Yeoman generator for a Feathers application",
"version": "4.7.0",
"homepage": "https://github.com/feathersjs/generator-feathers",
"main": "generators/app/index.js",
"license": "MIT",
"keywords": [
"feathers",
"feathers-plugin",
"feathers-app-generator",
"yeoman-generator",
"yeoman"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/feathersjs/generator-feathers/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/generator-feathers.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/generator-feathers/issues"
},
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator -u feathersjs -p generator-feathers && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"eslint": "eslint lib/. generators/**/index.js test/. --config .eslintrc.json",
"test": "npm run eslint && npm run mocha",
"mocha": "mocha test/generators.test.js --timeout 300000 --exit",
"update-dependencies": "ncu -u -x yeoman-generator,yeoman-test"
},
"dependencies": {
"@feathersjs/tools": "^0.2.3",
"colors": "1.4.0",
"lodash": "^4.17.21",
"node-dir": "^0.1.17",
"randomstring": "^1.2.2",
"semver": "^7.3.7",
"validate-npm-package-name": "^4.0.0",
"yeoman-generator": "^4.13.0"
},
"devDependencies": {
"@feathersjs/authentication": "^4.5.15",
"@feathersjs/authentication-local": "^4.5.15",
"@feathersjs/authentication-oauth": "^4.5.15",
"@feathersjs/configuration": "^4.5.15",
"@feathersjs/errors": "^4.5.15",
"@feathersjs/express": "^4.5.15",
"@feathersjs/feathers": "^4.5.15",
"@feathersjs/primus": "^4.5.15",
"@feathersjs/socketio": "^4.5.15",
"@prisma/client": "^3.15.1",
"@seald-io/nedb": "^3.0.0",
"body-parser": "^1.20.0",
"cassanknex": "^1.21.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"debug": "^4.3.4",
"eslint": "^8.17.0",
"express-cassandra": "^2.8.0",
"feathers-cassandra": "^3.5.8",
"feathers-knex": "^8.0.1",
"feathers-memory": "^4.1.0",
"feathers-mongodb": "^6.4.1",
"feathers-mongoose": "^8.5.1",
"feathers-nedb": "^6.0.0",
"feathers-objection": "^7.5.3",
"feathers-prisma": "^0.5.8",
"feathers-sequelize": "^6.3.4",
"helmet": "^5.1.0",
"jshint": "^2.13.4",
"mocha": "^10.0.0",
"mongodb": "^4.7.0",
"mongoose": "^6.3.6",
"nodemon": "^2.0.16",
"npm-check-updates": "^13.1.5",
"objection": "^3.0.1",
"sequelize": "^6.20.1",
"serve-favicon": "^2.5.0",
"sqlite3": "^5.0.8",
"typescript": "^4.7.3",
"winston": "^3.7.2",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^4.0.2"
}
}