-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.7 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.7 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
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
91
92
93
94
95
96
97
98
{
"name": "Devil",
"version": "1.0.0",
"main": "server/index.js",
"description": "My shining Nuxt.js project",
"engines": {
"node": "9.5.0"
},
"author": "monkemedia",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"test": "jest",
"heroku-postbuild": "npm run build",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/axios": "^5.0.0",
"@nuxtjs/font-awesome": "^1.0.3",
"animate.css": "^3.6.1",
"axios": "^0.18.0",
"buefy": "^0.6.3",
"bulma-steps": "^2.2.1",
"bulma.styl": "^0.6.11",
"bulma.styl-steps": "^1.0.0",
"connect-wwwhisper": "*",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"cross-env": "^5.0.1",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"firebase-key": "^2.0.1",
"jest-vue-preprocessor": "^1.3.1",
"jquery-zoom": "^1.7.20",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.5",
"lodash-addons": "^2.0.1",
"nuxt": "^1.4.0",
"nuxt-fontawesome": "^0.1.2",
"qs": "^6.5.1",
"slick-carousel": "^1.8.1",
"stripe": "^5.8.0",
"uploadcare-widget": "^3.2.2",
"uuid": "^3.2.1",
"vee-validate": "^2.0.3",
"vue": "2.5.15",
"vue-clickaway": "^2.1.0",
"vue-resource": "^1.5.0",
"vue-scrollto": "^2.8.0",
"vue-slick": "^1.1.12",
"vuedraggable": "^2.16.0",
"vuex": "^3.0.1"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-jest": "^22.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"eslint": "^4.15.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.0.0",
"flush-promises": "^1.0.0",
"jest": "^22.4.2",
"jest-serializer-vue": "^0.2.0",
"nodemon": "^1.11.0",
"pug": "^2.0.0-rc.4",
"pug-loader": "^2.3.0",
"sinon": "^4.4.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue-template-compiler": "^2.5.15",
"vue-test-utils": "^1.0.0-beta.11"
},
"jest": {
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1"
},
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
}
}