-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.72 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
{
"name": "core-graphql",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "babel-node server.js --presets @babel/preset-env",
"start:dev": "NODE_ENV=development nodemon --exec babel-node -- $NODE_DEBUG_OPTION server.js --presets @babel/preset-env",
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
"precommit": "yarn lint"
},
"dependencies": {
"apollo-server-express": "^1.2.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-graphql": "^0.6.11",
"graphql": "^0.11.7",
"graphql-tools": "^2.5.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.13.0",
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"eslint": "^5.9.0",
"babel-eslint": "^10.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-import-order": "^2.1.4",
"eslint-plugin-import-order-alphabetical": "^0.0.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^0.14.3",
"nodemon": "^1.12.1",
"typescript": "^3.5.3"
}
}