This repository was archived by the owner on Sep 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.5 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.5 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
{
"name": "portfolio-next",
"version": "1.0.0",
"description": "Portfolio site for JP Blanchette.",
"main": "index.js",
"scripts": {
"dev": "node server.js",
"open": "open 'http://localhost:3000'",
"build": "next build",
"export": "npm run build && next export",
"start": "NODE_ENV=production node server.js",
"format": "prettier --write \"{components,lib,pages}/**/*.{js,jsx}\"",
"lint": "eslint \"{components,lib,pages}/**/*.{js,jsx}\" --quiet",
"test": "echo \"Error: no test specified\" && exit 1",
"check": "npx npm-check -s -u"
},
"repository": {
"type": "git",
"url": "https://github.com/jpblancoder/portfolio-next.git"
},
"author": "JP Blanchette <empirecoder@gmail.com>",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.19",
"@fortawesome/free-brands-svg-icons": "5.9.0",
"@fortawesome/free-solid-svg-icons": "5.9.0",
"@fortawesome/react-fontawesome": "0.1.4",
"express": "4.17.1",
"next": "7.0.2",
"react": "16.8.6",
"react-dom": "16.8.6"
},
"devDependencies": {
"@zeit/next-sass": "1.0.1",
"autoprefixer": "9.6.1",
"babel-eslint": "10.0.2",
"bootstrap": "4.3.1",
"cssnano": "4.1.10",
"eslint": "5.8.0",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.2",
"lodash": "4.17.19",
"node-sass": "4.12.0",
"npm-check": "5.9.0",
"npm-run-all": "4.1.5"
}
}