-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.28 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
{
"name": "boostio.github.io",
"version": "1.0.0",
"description": "BoostIO Homepage",
"main": "index.js",
"scripts": {
"start": "hs out",
"build": "next build && next export",
"dev": "next dev",
"lint": "prettier '{pages,components}/**/*.{js,jsx}'",
"format": "prettier --write '{pages,component}/**/*.{js,jsx}'",
"deploy": "sh scripts/deploy.sh"
},
"keywords": [],
"author": "Junyoung Choi <[email protected]> (https://github.com/rokt33r)",
"license": "UNLICENSED",
"dependencies": {
"babel-plugin-styled-components": "^1.5.0",
"bootstrap": "^4.3.1",
"next": "^4.2.3",
"react": "^16.3.0",
"react-bootstrap": "^1.0.0-beta.5",
"react-dom": "^16.3.0",
"styled-components": "^3.1.6"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-plugin-inline-dotenv": "^1.1.2",
"babel-plugin-module-resolver": "^3.0.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-standard": "^3.0.1",
"http-server": "^0.11.1",
"prettier": "^1.17.0"
}
}