-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.31 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "neat-example",
"version": "1.0.0",
"description": "NEAT is Next.js, Express.js, Apollo, and Typescript.",
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/index.js",
"storybook": "start-storybook -p 9009 -s public",
"test": "jest",
"test-watch": "jest --watch"
},
"nodemonConfig": {
"watch": [
"server",
"common"
],
"ext": "js ts",
"exec": "ts-node --project tsconfig.server.json server/index.ts"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@cyverse-de/ui-lib": "^0.3.17",
"@material-ui/core": "^4.5.2",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.31",
"@types/graphql-bigint": "^1.0.0",
"@types/graphql-type-json": "^0.3.2",
"@types/lodash": "^4.14.149",
"@types/node-fetch": "^2.5.4",
"@types/pg": "^7.11.2",
"@types/react-dom": "^16.9.4",
"apollo-boost": "^0.4.4",
"apollo-datasource-rest": "^0.6.9",
"apollo-server-express": "^2.9.13",
"express": "^4.17.1",
"graphql": "^14.5.8",
"graphql-bigint": "^1.0.0",
"graphql-middleware": "^4.0.2",
"graphql-tools": "^4.0.6",
"graphql-type-json": "^0.3.1",
"next": "^9.1.4",
"next-cli": "^1.0.0",
"node-fetch": "^2.6.0",
"pg": "^7.14.0",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-typescript": "^7.7.4",
"@storybook/addon-actions": "^5.2.5",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-knobs": "^5.2.5",
"@storybook/addon-links": "^5.2.5",
"@storybook/addons": "^5.2.5",
"@storybook/react": "^5.2.5",
"@types/express": "^4.17.2",
"@types/jest": "^24.0.23",
"@types/next": "9.0.0",
"@types/node": "^12.12.16",
"@types/react": "^16.9.14",
"@zeit/next-typescript": "^1.1.1",
"awesome-typescript-loader": "^5.2.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^9.1.0",
"cross-env": "^6.0.3",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"jest": "^24.9.0",
"nodemon": "^2.0.1",
"react-docgen-typescript-loader": "^3.6.0",
"ts-node": "^8.5.4",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
}
}