-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.74 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
{
"name": "elasticpath-graphql-server",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "npm-run-all --parallel dev:server playground",
"dev:server": "nodemon -e ts,graphql -x ts-node -r dotenv/config src",
"playground": "graphql playground",
"deploy": "now --public --dotenv .env.production && now alias && now rm --yes --safe moltinql",
"compile": "rimraf build/dist && tsc",
"prepare": "husky install",
"prettier-check": "prettier --check src/.",
"prettier-fix":"prettier --write --ignore-unknown src/.",
"build": "yarn compile && mkdir build/dist/types && cp src/types/*.graphql build/dist/types/",
"start": "node build/dist",
"test": "node newman"
},
"dependencies": {
"apollo-datasource-rest": "^0.13.0",
"apollo-server": "^2.24.0",
"apollo-server-testing": "^2.24.0",
"dataloader": "^2.0.0",
"dotenv": "^9.0.2",
"graphql": "^15.5.0",
"graphql-tools": "^7.0.5",
"newman": "^5.2.3",
"nodemon": "^2.0.7"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.1",
"dotenv": "^9.0.2",
"graphql-cli": "^4.1.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"newman-reporter-htmlextra": "^1.20.4",
"nodemon": "^2.0.7",
"now": "^21.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"now": {
"alias": "elasticpath-graphql-server"
},
"prettier": {
"arrowParens": "always",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"engines": {
"node": "=16"
},
"nodemonConfig": {
"ignore": [
"schema.graphql"
]
}
}