-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.96 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
58
59
60
61
62
63
{
"name": "bulma-starter",
"version": "1.0.0",
"description": "Boiler plate code to bootstrap your next web project with Bulma.",
"keywords": [
"Bulma",
"webpack"
],
"homepage": "https://github.com/RobinCheptileh/bulma-starter#readme",
"bugs": {
"url": "https://github.com/RobinCheptileh/bulma-starter/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:RobinCheptileh/bulma-starter.git"
},
"license": "MIT",
"author": "Robin Cheptileh",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"build:docs": "webpack --mode production --output-path ./docs/",
"build:docs:dev": "webpack --mode development --output-path ./docs/",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --write **/**",
"prettier:check": "prettier --check **/**",
"start": "webpack-dev-server --mode production --open",
"start:dev": "webpack-dev-server --mode development --open",
"test": "eslint ."
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@fortawesome/fontawesome-free": "^5.7.2",
"autoprefixer": "^9.5.0",
"babel-loader": "^8.0.5",
"bulma": "^0.7.4",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.16.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
}
}