-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.28 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "my_app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier-stylelint --quiet --write ./css/style.css",
"eslint": "eslint -c .eslintrc.yml --color './src/**/*.{js,jsx}'",
"eslint:fix": "eslint -c .eslintrc.yml --color './src/**/*.{js,jsx}' --fix",
"stylelint": "stylelint --config .stylelintrc.yml './src/**/*.scss'",
"stylelint:fix": "stylelint --config .stylelintrc.yml './src/**/*.scss' --fix",
"start": "yarn && webpack-dev-server --mode=development",
"build": "yarn && webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jinugasachio/my_app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jinugasachio/my_app/issues"
},
"homepage": "https://github.com/jinugasachio/my_app#readme",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.6.0",
"babel-loader": "^8.0.6",
"babel-preset-power-assert": "3.0.0",
"css-loader": "^3.2.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^4.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^7.0.0",
"onsenui": "^2.10.10",
"prettier": "^1.18.2",
"prettier-stylelint": "^0.4.2",
"sass-loader": "^8.0.0",
"stylelint": "^10.1.0",
"stylelint-config-recess-order": "^2.0.3",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.10.1",
"vue-onsenui": "^2.6.2",
"webpack": "^4.40.0",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0",
"webpack-manifest-plugin": "^2.0.4"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"vee-validate": "^3.0.11",
"vue": "^2.6.10",
"vue-loader": "^15.7.1",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.1"
}
}