This repository was archived by the owner on Jun 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.56 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.56 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
64
65
66
{
"name": "ustart-scripts",
"version": "3.0.0-alpha.1",
"description": "Scripts for uStart.",
"keywords": [
"ustart",
"graphql",
"graphql framework",
"sequelize",
"mongoose",
"postgres",
"mysql",
"mariadb",
"mongodb",
"sqlite",
"mssql"
],
"author": "Leonel Peña <leonel@ustart.dev>",
"license": "MIT",
"homepage": "https://ustart.dev",
"bugs": {
"url": "https://github.com/ustart-dev/ustart/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ustart-dev/ustart.git"
},
"main": "./dist/lib/index.js",
"scripts": {
"clean": "rm -rf dist",
"build:dev": "npm run clean && babel src -d dist --copy-files",
"build": "npm run clean && babel --copy-files --no-comments --minified src -d dist",
"pack:test": "npm run build:dev && npm pack && mv ustart-*.tgz ../",
"test": "jest"
},
"dependencies": {
"apollo-errors": "^1.8.0",
"app-root-path": "^2.2.1",
"body-parser": "^1.18.2",
"compression": "^1.7.4",
"dotenv": "^7.0.0",
"graphql": "^0.13.2",
"graphql-yoga": "^1.18.1",
"lodash": "^4.17.15",
"ustart": "^3.0.0-alpha.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"graphql-shield": "^7.0.0",
"jest": "^22.4.3"
},
"files": [
"dist",
"template"
],
"jest": {
"verbose": true,
"testMatch": [
"**/__tests__/**/(*.)+(spec|test).[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"testEnvironment": "node"
}
}