mirror of
https://github.com/GuerillaStudio/souvenir.git
synced 2024-11-08 10:11:52 +00:00
Tixie
0798ae1610
* Small dependencies update * Add information on the project state * Update repo URL in console.log * Fix typo and improve wording in project state message * Specify an old node version to help with build
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"name": "souvenir",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"license": "Copyleft",
|
|
"engines": {
|
|
"node": "^12.0.0"
|
|
},
|
|
"scripts": {
|
|
"serve": "npm run serve-milia",
|
|
"serve-milia": "parcel src/index.html",
|
|
"build": "parcel build src/index.html",
|
|
"lint": "eslint --ext .js,vue .",
|
|
"lint-fix": "eslint --ext .js,vue . --fix"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.6.3",
|
|
"folktale": "^2.3.2",
|
|
"generic-pool": "^3.7.1",
|
|
"gif-writer": "^0.9.3",
|
|
"objectFitPolyfill": "^2.3.0",
|
|
"postcss-modules": "^1.4.1",
|
|
"vue": "^2.6.10",
|
|
"vue-router": "^3.1.3",
|
|
"vuex": "^3.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.6.4",
|
|
"@babel/plugin-transform-runtime": "^7.6.2",
|
|
"@vue/component-compiler-utils": "^3.0.0",
|
|
"autoprefixer": "^9.7.0",
|
|
"eslint": "^6.5.1",
|
|
"eslint-config-standard": "^14.1.0",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-node": "^10.0.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"eslint-plugin-vue": "^5.2.3",
|
|
"parcel-bundler": "^1.12.4",
|
|
"parcel-plugin-static-files-copy": "^2.4.3",
|
|
"parcel-plugin-sw-precache": "^1.1.1",
|
|
"vue-hot-reload-api": "^2.3.4",
|
|
"vue-template-compiler": "^2.6.10"
|
|
},
|
|
"staticFiles": {
|
|
"staticPath": "public",
|
|
"watcherGlob": "**"
|
|
},
|
|
"sw-precache": {
|
|
"maximumFileSizeToCacheInBytes": 10485760
|
|
}
|
|
}
|