-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "crud-example",
"version": "1.0.0",
"description": "An example project for building RESTful interfaces with Nuxt.js",
"author": "Todd Baur <todd@toadkicker.com>",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/auth": "^4.5.1",
"@nuxtjs/axios": "^5.3.1",
"bootstrap-vue": "^2.0.0-rc.27",
"lodash.assign": "^4.2.0",
"lodash.merge": "^4.6.1",
"nuxt": "^2.8.1",
"nuxt-i18n": "^3.3.0",
"vee-validate": "^2.1.0-beta.6",
"velocity-animate": "^1.5.1",
"vue-moment": "^4.1.0",
"vue-notification": "^1.3.10"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"coffee-loader": "^0.9.0",
"coffeescript": "^2.4.1",
"eslint": "^4.15.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^4.0.0",
"json-server": "^0.14.0",
"jsonwebtoken": "^9.0.0",
"node-sass": "^4.13.1",
"postcss-preset-env": "^5.1.0",
"pug": "3.0.1",
"pug-plain-loader": "^1.0.0",
"sass-loader": "^7.1.0"
}
}