-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
91 lines (91 loc) · 2.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
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
{
"name": "@materia/server",
"version": "1.1.6",
"description": "Build scalable and secure SAAS applications effortlessly - https://getmateria.com",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"bin": {
"materia": "./cli/index.js"
},
"keywords": [
"express",
"node",
"materia",
"backend",
"backend builder",
"database",
"sql"
],
"dependencies": {
"@materia/interfaces": "^1.0.3",
"@types/bluebird": "^3.5.26",
"@types/express": "^4.0.34",
"@types/validator": "^10.11.0",
"@types/ws": "^4.0.2",
"body-parser": "^1.19.0",
"chalk": "^2.3.1",
"chokidar": "^3.4.0",
"compression": "^1.7.4",
"connect-session-sequelize": "^6.0.0",
"cors": "^2.8.5",
"errorhandler": "^1.5.0",
"execa": "^4.0.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"fs-extra": "^8.1.0",
"inquirer": "^7.0.4",
"method-override": "^3.0.0",
"minimist": "^1.2.0",
"morgan": "^1.9.1",
"mysql2": "^1.6.1",
"oauth2orize": "^1.11.0",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-oauth2-client-password": "^0.1.2",
"pg": "^7.11.0",
"pg-hstore": "^2.3.2",
"sequelize": "^5.21.7",
"simple-git": "^1.121.0",
"sqlite3": "4.2.0",
"uuid": "^3.1.0",
"which": "^1.3.1",
"ws": "6.1.2"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/compression": "0.0.33",
"@types/fs-extra": "^4.0.0",
"@types/mocha": "^5.2.6",
"@types/node-uuid": "0.0.28",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"crlf": "^1.1.1",
"mocha": "^7.1.2",
"ncp": "^2.0.0",
"tslint": "^6.1.2",
"typescript": "3.7.5"
},
"scripts": {
"build": "tsc -p . && ncp package.json dist/package.json && ncp src/cli dist/cli && ncp scripts dist/scripts && ncp README.md dist/README.MD && ncp LICENSE.md dist/LICENSE.md",
"prepublishOnly": "node scripts/prepublish.js",
"postpublish": "node scripts/postpublish.js",
"test": "mocha -R spec dist/test/**/*.js --exit",
"test-watch": "mocha -R spec 'dist/test/**/*.js' --watch",
"test-postgres": "DIALECT=postgres npm test",
"test-sqlite": "npm test",
"test-all": "npm run test-sqlite -s && npm run test-postgres -s",
"watch": "tsc -p . -w"
},
"repository": {
"type": "git",
"url": "[email protected]:materiahq/materia-server.git"
},
"author": "Webshell <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/materiahq/materia-server/issues"
},
"homepage": "https://github.com/materiahq/materia-server#readme"
}