-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 2.69 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"private": true,
"name": "web",
"version": "0.0.0",
"license": "MIT",
"bin": "server.js",
"pkg": {
"assets": [
".next/**/*",
".env.example"
],
"scripts": [
".next/server/**/*.js"
]
},
"scripts-info": {
"dev": "[Development] Run a livereload dev server.",
"build": "[Production] Compile source code to CJS with babel.",
"start": "[Production] Run a production server.",
"pkg": "[Production] Compile source code to binary via pkg."
},
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "node server.js",
"pkg": "pkg . --targets node10-alpine-x64 --out-path pkg",
"test": "TZ='UTC' NODE_ENV=test jest --coverage",
"test:watch": "npm run test -- --watch",
"analyze": "BUNDLE_ANALYZE=both yarn build"
},
"dependencies": {
"@material-ui/core": "1.4.3",
"@material-ui/icons": "2.0.1",
"@zeit/next-bundle-analyzer": "0.1.1",
"@zeit/next-source-maps": "0.0.2",
"apollo-cache-inmemory": "1.2.6",
"apollo-client": "2.3.7",
"apollo-link": "1.2.2",
"apollo-link-http": "1.5.4",
"apollo-link-log": "1.0.1",
"compression": "1.7.3",
"cookie": "0.3.1",
"date-fns": "1.29.0",
"debug": "3.1.0",
"dotenv-safe": "6.0.0",
"express": "4.16.3",
"formik": "1.0.2",
"helmet": "3.13.0",
"isomorphic-unfetch": "2.1.1",
"morgan": "1.9.0",
"next": "11.1.0",
"next-routes": "1.4.2",
"prop-types": "15.6.2",
"ramda": "0.25.0",
"react": "16.4.2",
"react-apollo": "2.1.9",
"react-dom": "16.4.2",
"react-jss": "8.6.1",
"recompose": "0.28.2",
"styled-jsx": "3.0.2"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.46",
"@babel/preset-flow": "7.0.0-beta.46",
"@pisano/enzyme": "3.3.0-pisano.public.1",
"@pisano/enzyme-adapter-react-16": "1.1.1-pisano.public.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.4.2",
"babel-plugin-macros": "2.4.0",
"concurrently": "3.6.1",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.4",
"flow-bin": "0.78.0",
"graphql": "0.13.2",
"graphql.macro": "1.0.2",
"jest": "23.4.2",
"jest-specific-snapshot": "1.0.0",
"pkg": "4.3.3"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.js",
"testURL": "http://localhost/",
"collectCoverageFrom": [
"{components,pages,utils}/**/*.{js,jsx}",
"!{components,pages,utils}/**/*.test.{js,jsx}",
"!{components,pages,utils}/**/*.example.{js,jsx}"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/lib/",
"<rootDir>/.next/"
],
"resetMocks": true,
"resetModules": true
}
}