-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.29 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.29 KB
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
{
"name": "franciscan-university-react",
"description": "The main website for Franciscan University of Steubenville. Built with React, NextJS, and MaterialUI.",
"version": "1.0.0",
"author": "Jesse Weigel <jesseweigel@gmail.com>",
"scripts": {
"dev": "./node_modules/.bin/nodemon --watch server.js server.js",
"ci": "node server.js & ",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"build-deploy": "npm run build && gcloud app deploy",
"deploy": "gcloud app deploy",
"test-deploy": "npm run build && gcloud app deploy --no-promote",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"src/**/*.js\"",
"cm": "git-cz",
"precommit": "lint-staged && npm run test",
"unit": "jest .test.js --config=jest.config.json",
"e2e": "mocha --timeout 30000 ./e2e/runner.js ./e2e/tests/*.spec.js",
"test": "npm run unit && npm run e2e"
},
"now": {
"alias": "dev.franciscan.university",
"env": {
"NODE_ENV": "production"
},
"scale": {
"sfo1": {
"min": 2,
"max": "auto"
}
}
},
"dependencies": {
"@material-ui/codemod": "^1.1.0",
"@material-ui/core": "3.0.0",
"@material-ui/icons": "3.0.0",
"algoliasearch": "^3.30.0",
"apollo-cache-inmemory": "^1.1.12",
"apollo-client": "^2.2.8",
"apollo-link-http": "^1.5.3",
"change-case": "^3.0.2",
"classnames": "^2.2.5",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tag": "^2.8.0",
"html-entities": "^1.2.1",
"isomorphic-unfetch": "^2.0.0",
"jsforce": "^1.9.0",
"lodash.debounce": "^4.0.8",
"lodash.foreach": "^4.5.0",
"lodash.mapvalues": "^4.6.0",
"lodash.throttle": "^4.1.1",
"lru-cache": "^4.1.2",
"next": "^7.0.1",
"next-offline": "^3.0.2",
"react": "^16.4.1",
"react-apollo": "^2.1.0",
"react-dom": "^16.4.1",
"react-instantsearch-dom": "^5.2.3",
"react-masonry-component": "^6.0.2",
"react-scroll": "^1.7.9",
"react-swipeable-views": "^0.12.16",
"uuid": "^3.3.2"
},
"keywords": [
"next"
],
"license": "MIT",
"main": "n/a",
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"chai": "^4.1.2",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^5.0.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jest": "^22.0.4",
"lint-staged": "7.2.0",
"mocha": "^5.0.0",
"nodemon": "^1.14.12",
"prettier": "^1.9.2",
"puppeteer": "^1.2.0",
"raf": "^3.4.0"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --no-semi",
"eslint --fix",
"git add"
]
},
"jest": {
"setupFiles": [
"<rootDir>/shim.js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard": {
"globals": [
"fetch",
"FormData"
],
"parser": "babel-eslint"
}
}