-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 KB
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
{
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/webpack/bin/webpack.js -p",
"watch": "./node_modules/webpack/bin/webpack.js --watch",
"eslint": "./node_modules/eslint/bin/eslint.js ./assets/js/src",
"eslint-fix": "./node_modules/eslint/bin/eslint.js --fix ./assets/js/src"
},
"dependencies": {
"@johmun/vue-tags-input": "^2.1.0",
"copy-webpack-plugin": "^4.6.0",
"gulp": "^4.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"path": "^0.12.7",
"vue": "^2.6.11",
"vue-html-loader": "^1.2.4",
"vue-loader": "^14.2.4",
"vue-template-compiler": "^2.6.11",
"webpack": "^3.12.0"
},
"eslintConfig": {
"extends": "standard",
"env": {
"browser": true,
"node": true,
"jquery": true
},
"globals": {}
},
"eslintIgnore": [
"./board.js",
"./BoardTags.js",
"tests/"
]
}