-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1019 Bytes
/
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
{
"name": "portfolio-website",
"version": "1.0.0",
"description": "New Portfolio Website for myself!",
"main": "index.js",
"scripts": {
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false cd ./packages/client && yarn install --production=false && yarn run build",
"prod": "cd ./packages/client && yarn run build && cd ../.. && yarn run server",
"start": "node index.js"
},
"repository": "https://github.com/ericz99/portfolio-website.git",
"author": "Eric Zhang",
"license": "MIT",
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^1.18.2"
},
"dependencies": {
"express": "^4.17.1"
}
}