-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.39 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": "hyperapp-boilerplate",
"version": "1.0.0",
"description": "hyperapp-boilerplate",
"main": "index.js",
"scripts": {
"build-task:scss-compile": "node-sass-chokidar --source-map true src/scss/ -o dist/css",
"build-task:autoprefixer": "postcss dist/css/*.css --use autoprefixer -d dist/css",
"sass:build": "npm-run-all -p build-task:*",
"sass:watch": "chokidar 'src/scss/**/*.scss' -c 'npm run sass:build'",
"start": "npm-run-all -p devServer sass:*",
"devServer": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fbedussi/hyperapp-boilerplate.git"
},
"author": "Francesco Bedussi",
"license": "MIT",
"bugs": {
"url": "https://github.com/fbedussi/hyperapp-boilerplate/issues"
},
"homepage": "https://github.com/fbedussi/hyperapp-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.1.0",
"autoprefixer": "^9.1.5",
"babel-loader": "^8.0.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"chokidar-cli": "^1.2.1",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"postcss-cli": "^6.0.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"dependencies": {
"hyperapp": "^1.2.9"
}
}