-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
{
"name": "sqs-build",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "mocha",
"start": "webpack --progress --colors --watch",
"watch": "./node_modules/.bin/webpack -d --watch --colors",
"build": "set PROD_ENV=true && set process.env='production' && webpack -p&&documentation build --output ./README.md --format md",
"dev": "webpack-dev-server ./main.js --hot --watch --colors"
},
"babel": {
"presets": [
"env"
]
},
"author": "Ben Obee",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^7.2.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.24.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-runtime": "^6.23.0",
"css-loader": "^0.28.7",
"es6-promise": "^4.1.1",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-watch": "^3.0.1",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^3.0.1",
"github-release-cli": "^0.3.0",
"html-loader": "^0.5.1",
"imports-loader": "^0.7.1",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^4.0.5",
"path": "^0.12.7",
"postcss-loader": "^2.0.7",
"postcss-smart-import": "^0.7.5",
"style-loader": "^0.19.0",
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"axios": "^0.17.1",
"vue": "^2.5.13"
}
}