-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
129 lines (129 loc) · 2.81 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
124
125
126
127
128
129
{
"name": "exam-maker-frontend",
"version": "1.0.0",
"description": "create, edit and share exams",
"keywords": [
"exam",
"simulator"
],
"author": {
"name": "benjaminadk",
"email": "[email protected]",
"url": "https://github.com/exam-simulator"
},
"homepage": "https://github.com/exam-simulator/maker-frontend",
"repository": {
"type": "git",
"url": "https://github.com/exam-simulator/maker-frontend.git"
},
"license": "ISC",
"scripts": {
"test": "jest",
"dev": "next -p 8080",
"build": "next build",
"start": "next start -p $PORT",
"heroku-postbuild": "next build"
},
"engines": {
"node": "10.13.0",
"npm": "6.1.0"
},
"dependencies": {
"apollo-boost": "^0.3.1",
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-plugin-styled-components": "^1.10.0",
"date-fns": "^2.0.0-alpha.27",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"next": "^8.0.3",
"next-plugin-styled-icons": "^7.0.0",
"next-with-apollo": "^3.3.2",
"nprogress": "^0.2.0",
"polished": "^3.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-apollo": "^2.4.1",
"react-dom": "^16.8.3",
"react-google-login": "^5.0.2",
"styled-components": "^4.1.3",
"styled-icons": "^7.2.0"
},
"devDependencies": {
"babel-jest": "^24.3.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.5",
"jest": "^24.3.1",
"jest-transform-graphql": "^2.1.0",
"waait": "^1.0.4"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/.next/"
],
"transform": {
"\\.(gql|graphql)$": "jest-transform-graphql",
".*": "babel-jest"
}
},
"babel": {
"env": {
"development": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true
}
]
]
},
"production": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true
}
]
]
},
"test": {
"presets": [
[
"next/babel",
{
"preset-env": {
"modules": "commonjs"
}
}
]
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true
}
]
]
}
}
}
}