curriculum/package.json

46 lines
1.3 KiB
JSON
Raw Normal View History

2019-02-25 00:47:08 +01:00
{
"name": "anthony-dumas-portfolio",
"version": "2.0.0-SNAPSHOT",
"description": "anthony-dumas-portfolio",
"keywords": [
"sass",
"bulma",
"css",
"start"
],
"author": "Anthony Dumas <anthony@dumas.css>",
"repository": {
"type": "git",
"url": "git+https://github.com/AdamasFR/CV_Web_Dumas.git"
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^9.5.1",
2019-02-25 00:47:08 +01:00
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015-ie": "^6.7.0",
"bulma": "^0.7.2",
"node-sass": "^4.12.0",
2019-02-25 00:47:08 +01:00
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.1"
},
"scripts": {
"css-deploy": "npm run css-build && npm run css-postcss",
"css-build": "node-sass _sass/main.scss css/main.css",
2019-02-25 00:47:08 +01:00
"css-postcss": "postcss --use autoprefixer --output css/main.css css/main.css",
"css-watch": "npm run css-build -- --watch",
"deploy": "npm run css-deploy && npm run js-build",
"js-build": "babel _javascript --out-dir lib",
"js-watch": "npm run js-build -- --watch",
2019-03-11 13:34:41 +01:00
"auto-loading": "npx browser-sync start --server --files '*.html' --files 'css/*.css'",
"start": "npm-run-all --parallel css-watch js-watch auto-loading"
2019-02-25 00:47:08 +01:00
},
"dependencies": {
2019-05-07 18:23:15 +05:00
"bonsoir.js": "^1.0.2",
"browser-sync": "^2.26.5",
"global": "^4.3.2",
"jquery": "^3.4.1",
"npx": "^10.2.0"
2019-02-25 00:47:08 +01:00
}
2019-03-23 23:34:35 +01:00
}