-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.5 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
{
"name": "graphql-tutorial",
"version": "4.0.0",
"description": "A project to explore GraphQL written in ES6 with babel and webpack",
"main": "dist/index.js",
"engines": {
"node": "12.13.0",
"npm": "6.12.1"
},
"scripts": {
"clean": "rimraf dist dist-prod",
"watch": "babel --out-dir dist --source-maps --watch --verbose --env-name dev src",
"serve": "nodemon dist/index.js",
"compile": "babel --out-dir dist --verbose --no-comments --compact true --minified src",
"build": "npm run compile && webpack --config webpack.config.js --mode production",
"start": "npm run build && LOGGY_STACKS=1 node dist-prod/bundle.js"
},
"keywords": [
"nodejs",
"graphql",
"babel",
"es6",
"webpack"
],
"author": "Vincent DAGOURY",
"license": "ISC",
"dependencies": {
"apollo-server": "^2.9.7",
"dotenv": "^8.2.0",
"graphql": "^14.5.8",
"graphql-iso-date": "^3.6.1",
"graphql-tools": "^4.0.6",
"loggy": "^1.0.8",
"mongoose": "^5.7.7"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/preset-env": "^7.6.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"eslint": "^6.6.0",
"eslint-plugin-graphql": "^3.1.0",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"source-map": "^0.7.3",
"webpack": "^4.41.2",
"webpack-node-externals": "^1.7.2"
}
}