forked from inland-empire-software-development/main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "main",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:inland-empire-software-development/main.git",
"author": "inland-empire-software-development",
"license": "GNU GPLv3",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.8.1",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"axios": "^0.19.0",
"compass": "^0.1.1",
"express": "^4.17.1",
"isomorphic-unfetch": "^3.0.0",
"next": "^8.1.0",
"next-images": "^1.1.1",
"next-seo": "^1.11.2",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"sanitize-html": "^1.20.1"
},
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"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": "^5.16.0",
"eslint-config-google": "^0.13.0",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.8.0",
"webpack": "^4.34.0"
}
}