This repository has been archived by the owner on Jul 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.56 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
{
"name": "bungin-frontend",
"version": "0.0.01",
"description": "Bungin Client with React, GraphQL, Next and Apollo",
"main": "server.js",
"scripts": {
"olddev": "next -p 3000",
"dev": "nodemon server.js ",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"test": "NODE_ENV=test jest --watch",
"test-win": "SET NODE_ENV=test&& jest --watch",
"heroku-postbuild": "next build",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.10",
"@fortawesome/free-brands-svg-icons": "^5.6.1",
"@fortawesome/free-solid-svg-icons": "^5.6.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"@rebass/grid": "^6.0.0-7",
"@sweetalert/with-react": "^0.1.1",
"apollo-boost": "^0.1.16",
"apollo-client": "^2.4.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.7.1",
"date-fns": "^2.0.0-alpha.7",
"downshift": "^2.2.3",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"express": "^4.16.4",
"graphql": "^14.0.2",
"graphql-tag": "^2.9.2",
"i": "^0.3.6",
"lodash.debounce": "^4.0.8",
"next": "^7.0.0",
"next-with-apollo": "^3.1.3",
"npm": "^6.5.0",
"nprogress": "^0.2.0",
"prop-types": "^15.6.2",
"rc-progress": "^2.2.6",
"react": "^16.5.2",
"react-adopt": "^0.6.0",
"react-apollo": "^2.2.1",
"react-dom": "^16.5.2",
"react-stripe-checkout": "^2.6.3",
"react-transition-group": "^2.5.0",
"styled-components": "^3.4.9",
"styled-media-query": "^2.1.1",
"styled-tools": "^1.6.0",
"sweetalert": "^2.1.2",
"waait": "^1.0.2"
},
"devDependencies": {
"babel-jest": "^23.6.0",
"babel-plugin-module-resolver": "^3.1.1",
"casual": "^1.5.19",
"enzyme-to-json": "^3.3.4",
"eslint": "5.11.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-react": "^7.11.1",
"graphql-tools": "^4.0.0",
"jest": "^23.6.0",
"jest-transform-graphql": "^2.1.0",
"nodemon": "^1.18.9",
"prettier": "1.15.3"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js",
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/node_modules/"
],
"transform": {
"\\.(gql|graphql)$": "jest-transform-graphql",
".*": "babel-jest",
"^.+\\.js?$": "babel-jest"
}
}
}