This repository has been archived by the owner on Jun 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.75 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
{
"name": "app-starter",
"version": "1.0.0",
"description": "Application starter project using Next.js",
"license": "MIT",
"scripts": {
"dev": "NODE_PATH=src node server/index.js",
"build": "NODE_PATH=src next build",
"start": "NODE_ENV=production node server/index.js",
"test": "NODE_PATH=src jest --no-watchman"
},
"author": "Hugo Pineda",
"dependencies": {
"@types/next": "^2.4.12",
"@types/prop-types": "^15.5.3",
"@types/react": "^16.4.6",
"@zeit/next-css": "^0.2.0",
"apollo-cache-inmemory": "^1.2.5",
"apollo-client": "^2.3.5",
"apollo-client-preset": "^1.0.8",
"apollo-link-http": "^1.5.4",
"autoprefixer": "^7.2.5",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"formik": "^0.11.11",
"graphql": "^0.13.2",
"graphql-anywhere": "^4.1.14",
"graphql-tag": "^2.9.2",
"isomorphic-unfetch": "^2.0.0",
"moment": "^2.22.2",
"next": "^6.1.1",
"next-page-transitions": "^1.0.0-alpha.4",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-apollo": "^2.1.9",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-select": "^1.2.1",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-thunk": "^2.3.0",
"styled-jsx": "^2.2.7"
},
"devDependencies": {
"axios-mock-adapter": "^1.15.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "22.4.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.4",
"prettier": "^1.13.7",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.2.0",
"redux-mock-store": "^1.5.3"
},
"prettier": {
"singleQuote": true
}
}