-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.71 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
{
"name": "graphql-starter",
"version": "0.0.2",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node server.js",
"dev:lambda": "netlify-lambda serve functions/src",
"dev:functions": "concurrently --kill-others \"npm run dev\" \"npm run dev:lambda\"",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"export": "NODE_ENV=production npm run build && next export && netlify-lambda build functions/src",
"pretty": "prettier --write '**/*.js'",
"lint": "eslint ."
},
"keywords": [],
"author": "Gabriel Stein <gabe@ghscommunications.com>",
"license": "MIT",
"description": "A basic, work in progress template for graphql universal (if you want) React sites.",
"repository": "https://github.com/gabestein/graphql-starter",
"dependencies": {
"@blueprintjs/core": "^3.17.1",
"@zeit/next-sass": "^1.0.1",
"acorn": "^6.2.1",
"acorn-jsx": "^5.0.1",
"apollo-boost": "^0.4.3",
"apollo-link-context": "^1.0.18",
"auth0-js": "^9.11.2",
"axios": "^0.19.0",
"dotenv": "^8.0.0",
"espree": "^6.0.0",
"express": "^4.17.1",
"graphql": "^14.4.2",
"isomorphic-unfetch": "^3.0.0",
"netlify-lambda": "^1.5.0",
"next": "^9.0.2",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-apollo": "^2.5.8",
"react-dom": "^16.8.6"
},
"devDependencies": {
"concurrently": "^4.1.1",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"prettier": "1.18.2"
}
}