-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.16 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
{
"name": "v10-synilausn",
"version": "1.0.0",
"description": "verkefni 10",
"main": "index.js",
"scripts": {
"eslint": "eslint ./src/**/*.js",
"rollup": "rollup -c",
"rollup-watch": "rollup -c -w",
"browser-sync": "browser-sync start --server --files index.html ./dist/styles.css ./dist/bundle.js",
"stylelint": "stylelint ./src/styles/**/*.scss --syntax scss",
"sass": "node-sass --source-map-embed ./src/styles/styles.scss ./dist/styles.css",
"sass-watch": "node-sass --source-map-embed --watch --recursive src/styles/styles.scss ./dist/styles.css",
"test": "npm-run-all eslint stylelint",
"dev": "npm-run-all --parallel sass sass-watch rollup-watch browser-sync"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"browser-sync": "^2.26.3",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"node-sass": "^4.10.0",
"npm-run-all": "^4.1.3",
"rollup": "^0.67.0",
"rollup-plugin-babel": "^4.0.3",
"stylelint": "^9.7.1",
"stylelint-config-primer": "^2.2.11"
}
}