diff options
author | ArthurHoaro <arthur@hoa.ro> | 2018-02-24 18:37:57 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2018-03-26 19:29:44 +0200 |
commit | 7ff458bc437077ca0da372513b6f06e1be83ee83 (patch) | |
tree | 73dfa796776fbd631c86678cf828cdf7592b5c2f /package.json | |
parent | 758fe7201eec7a8894eb473377ae18e9ebaf12ac (diff) | |
download | Shaarli-7ff458bc437077ca0da372513b6f06e1be83ee83.tar.gz Shaarli-7ff458bc437077ca0da372513b6f06e1be83ee83.tar.zst Shaarli-7ff458bc437077ca0da372513b6f06e1be83ee83.zip |
Webpack / Configure webpack, ESLint, Travis, Makefile, npm/yarn and git
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 | } | ||