diff options
author | ArthurHoaro <arthur@hoa.ro> | 2018-03-28 19:08:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-28 19:08:06 +0200 |
commit | c81f1afc0a3a16daf98741a63c7524b27835da99 (patch) | |
tree | dfe81b73f028dfc27eda916b14bf4bc17966b082 /package.json | |
parent | 9b2bd66fb60ffd5a833480bf329062c7d57bc8c4 (diff) | |
parent | d7eb06bd7c4d01bbdf67f4f100af7a3e300098d3 (diff) | |
download | Shaarli-c81f1afc0a3a16daf98741a63c7524b27835da99.tar.gz Shaarli-c81f1afc0a3a16daf98741a63c7524b27835da99.tar.zst Shaarli-c81f1afc0a3a16daf98741a63c7524b27835da99.zip |
Merge pull request #1072 from ArthurHoaro/feature/modern-front-end
Manage frontend dependencies with npm/yarn and webpack
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 00000000..4320eb88 --- /dev/null +++ b/package.json | |||
@@ -0,0 +1,30 @@ | |||
1 | { | ||
2 | "dependencies": { | ||
3 | "awesomplete": "^1.1.2", | ||
4 | "blazy": "^1.8.2", | ||
5 | "font-awesome": "^4.7.0", | ||
6 | "pure-extras": "^1.0.0", | ||
7 | "purecss": "^1.0.0" | ||
8 | }, | ||
9 | "devDependencies": { | ||
10 | "babel-core": "^6.26.0", | ||
11 | "babel-loader": "^7.1.2", | ||
12 | "babel-minify-webpack-plugin": "^0.2.0", | ||
13 | "babel-preset-env": "^1.6.1", | ||
14 | "css-loader": "^0.28.9", | ||
15 | "eslint": "^4.16.0", | ||
16 | "eslint-config-airbnb-base": "^12.1.0", | ||
17 | "eslint-plugin-import": "^2.8.0", | ||
18 | "extract-text-webpack-plugin": "^3.0.2", | ||
19 | "file-loader": "^1.1.6", | ||
20 | "node-sass": "^4.7.2", | ||
21 | "sass-loader": "^6.0.6", | ||
22 | "style-loader": "^0.19.1", | ||
23 | "url-loader": "^0.6.2", | ||
24 | "webpack": "^3.10.0" | ||
25 | }, | ||
26 | "scripts": { | ||
27 | "build": "webpack", | ||
28 | "watch": "webpack --watch" | ||
29 | } | ||
30 | } | ||