-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.24 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "fandem-web",
"version": "0.1.0",
"description": "fandem.io! Built with React, GraphQL, Next, Apollo and lot's of love",
"repository": "https://github.com/MikeAlexMartinez/fandem-web",
"license": "MIT",
"scripts": {
"dev": "next -p 7777",
"build": "next build",
"start": "next start",
"test": "NODE_ENV=test && jest --watch",
"e2e": "NODE_ENV=e2e && cucumber-js e2e/features/**/*.feature --require-module @babel/register --require e2e/steps/**/*.steps.js"
},
"dependencies": {
"@date-io/date-fns": "^1.3.8",
"@material-ui/core": "^4.3.0",
"@material-ui/icons": "^4.2.1",
"@material-ui/pickers": "^3.2.0",
"@material-ui/styles": "^4.3.0",
"apollo-boost": "^0.4.3",
"apollo-client": "^2.6.3",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-inline-react-svg": "^1.0.1",
"babel-plugin-styled-components": "^1.7.1",
"casual": "^1.5.19",
"classnames": "^2.2.6",
"clsx": "^1.0.4",
"date-fns": "^2.0.0-alpha.27",
"email-validator": "^2.0.4",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"graphql": "^14.4.2",
"graphql-tag": "^2.9.2",
"jss": "^9.8.7",
"lodash": "^4.17.11",
"lodash.debounce": "^4.0.8",
"lodash.deburr": "^4.1.0",
"next": "^9.0.0",
"next-with-apollo": "^4.1.1",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-adopt": "^0.6.0",
"react-apollo": "^2.2.1",
"react-datepicker": "^2.8.0",
"react-dom": "^16.8.6",
"react-jss": "^8.6.1",
"react-select": "^3.0.3",
"react-stripe-checkout": "^2.6.3",
"react-transition-group": "^2.5.0",
"styled-jsx": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^23.6.0",
"babel-plugin-module-resolver": "^3.1.1",
"chai": "^4.2.0",
"cucumber": "^5.1.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.13.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"graphql-tools": "^4.0.0",
"jest": "^23.6.0",
"jest-transform-graphql": "^2.1.0",
"puppeteer": "^1.13.0"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js",
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/node_modules/"
],
"transform": {
"\\.(gql|graphql)$": "jest-transform-graphql",
".*": "babel-jest"
}
},
"babel": {
"env": {
"development": {
"presets": [
"next/babel"
],
"plugins": [
[
"inline-react-svg"
]
]
},
"production": {
"presets": [
"next/babel"
],
"plugins": [
[
"inline-react-svg"
]
]
},
"test": {
"presets": [
"next/babel"
],
"plugins": [
[
"inline-react-svg"
]
]
}
},
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}