-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "rubynantes.org",
"version": "1.0.0",
"description": "",
"repository": "",
"author": "",
"scripts": {
"test": "mocha --require test/helpers/dom.js --compilers js:babel-core/register",
"build:assets": "NODE_ENV=production webpack -p --config webpack.prod.config.js",
"build": "bundle exec middleman build",
"start:assets": "NODE_ENV=development webpack --watch --config webpack.dev.config.js",
"start": "bundle exec middleman server"
},
"babel": {
"presets": [
"es2015"
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.5",
"extract-text-webpack-plugin": "^3.0.0",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"sinon": "^3.2.1",
"style-loader": "^0.18.2",
"webpack": "^3.5.5"
},
"dependencies": {
"bulma": "^0.7.1"
}
}