-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.79 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"author": "Lucas Still <[email protected]>",
"dependencies": {
"es6-promise": "^4.2.5",
"iltorb": "^2.4.1",
"vue": "^2.6.0",
"vue-meta": "^1.5.6",
"vue-router": "^3.0.2",
"vue-server-renderer": "^2.6.0",
"vuex": "^3.1.0",
"vuex-router-sync": "^5.0.0"
},
"description": "Vue Lambda",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.1",
"@vue/test-utils": "^1.0.0-beta.29",
"aws-sdk": "^2.409.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^5.0.0",
"css-loader": "^2.1.0",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-json": "^1.3.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-vue": "^5.1.0",
"express": "^4.16.4",
"file-loader": "^3.0.1",
"flush-promises": "^1.0.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"jest": "^24.0.0",
"memory-fs": "^0.4.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.10.0",
"postcss": "^7.0.14",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.4.0",
"prettier": "^1.16.4",
"sass-loader": "^7.1.0",
"stylelint": "^9.10.1",
"stylelint-a11y": "^1.1.10",
"stylelint-color-format": "^0.2.0",
"stylelint-config-prettier": "^5.0.0",
"stylelint-declaration-block-no-ignored-properties": "^1.1.0",
"stylelint-order": "^2.0.0",
"stylelint-scss": "^3.5.4",
"sw-precache-webpack-plugin": "^0.11.5",
"terser-webpack-plugin": "^1.2.2",
"vue-jest": "^3.0.1",
"vue-loader": "^15.6.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.0",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-middleware": "^3.5.1",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
},
"engines": {
"node": "8.10.0",
"npm": "5.6.0"
},
"license": "MIT",
"name": "vue-lambda",
"repository": {
"type": "git",
"url": "https://github.com/ModusCreateOrg/vue-lambda"
},
"scripts": {
"build": "bash ./bin/build.sh",
"lint": "bash ./bin/lint.sh",
"lint-check-rules": "bash ./bin/lint-check-rules.sh",
"lint-fix": "bash ./bin/lint.sh --fix",
"start": "NODE_ENV=development node ./src/app/server/index.dev.js",
"test": "npm run test:unit",
"test:unit": "jest --config ./.jestrc.js"
},
"version": "0.0.0"
}