This repository was archived by the owner on Mar 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "main",
"version": "1.0.1",
"main": "index.js",
"repository": "[email protected]:inland-empire-software-development/main.git",
"author": "inland-empire-software-development",
"license": "GPL-3.0-only",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"abortcontroller-polyfill": "^1.4.0",
"apollo-boost": "^0.4.4",
"axios": "^0.19.0",
"compass": "^0.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.5.8",
"isomorphic-unfetch": "^3.0.0",
"lodash.debounce": "^4.0.8",
"moment": "^2.24.0",
"next": "^9.1.3",
"next-images": "^1.2.0",
"next-seo": "^3.0.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.13.0",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-apollo": "^3.1.3",
"react-dom": "^16.11.0",
"react-html-parser": "^2.0.2",
"sanitize-html": "^1.20.1",
"uikit": "^3.2.3"
},
"scripts": {
"dev": "next dev",
"development": "next start -p 6006",
"build": "next build",
"staging": "next start -p 6005",
"production": "next start -p 6004",
"lint": "./node_modules/.bin/eslint ./**/*.{js,jsx} --quiet || true",
"test": "jest || true"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"jest": "^24.9.0",
"webpack": "^4.41.2"
}
}