-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
{
"name": "@prisma-cms/module-bilerplate",
"description": "Module boilerplate for @prisma-cms/server",
"version": "1.1.8-dev",
"main": "src/",
"files": [
"src"
],
"scripts": {
"start": "action=start-server node --experimental-modules src/server",
"start-dev": "action=start-server nodemon --experimental-modules src/server",
"deploy": "NODE_ENV=test node --experimental-modules src/server/scripts/deploy/with-prisma",
"build-api": "node --experimental-modules src/server/scripts/deploy/api-only",
"test": "NODE_OPTIONS=\"--experimental-modules\" yarn mocha --delay __tests__/"
},
"dependencies": {
"@prisma-cms/prisma-module": "latest",
"chalk": "^2.4.1",
"merge-graphql-schemas": "latest"
},
"devDependencies": {
"@prisma-cms/server": "latest",
"eslint": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"expect": "^23.6.0",
"graphql": "*",
"mocha": "^5.2.0",
"nodemon": "latest"
},
"resolutions": {
"graphql": "*"
},
"author": "Fi1osof",
"license": "MIT",
"directories": {
"src": "src"
},
"keywords": [
"prisma-cms",
"server",
"boilerplate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/prisma-cms/module-boilerplate.git"
},
"bugs": {
"url": "https://github.com/prisma-cms/module-boilerplate/issues"
},
"homepage": "https://github.com/prisma-cms/module-boilerplate#readme"
}