-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.42 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
35
{
"name": "iridescent",
"version": "0.1.0",
"description": "background experiments",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^8.2.2",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-vue": "^4.4.0",
"laravel-mix": "^2.1.11",
"stylelint": "^9.1.3",
"stylelint-config-standard": "^18.2.0",
"webpack-bundle-analyzer": "^2.11.1"
},
"dependencies": {
"vue": "^2.5.16",
"vue-router": "^3.0.1"
},
"scripts": {
"build": "node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "yarn build --watch",
"lint:es": "eslint --ext .js,.vue src test/unit/specs",
"lint:style": "stylelint 'src/**/*.vue'",
"lint": "yarn lint:es & yarn lint:style",
"test": "node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=test jest --config test/unit/jest.conf.js",
"test:coverage": "yarn test --coverage",
"test:watch": "yarn test --watch --notify",
"package": "node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"deploy": "git subtree push --prefix dist origin gh-pages"
}
}