-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "nuxt-coffee-crud",
"version": "1.0.0",
"description": "CoffeeScript/Nuxt/Express/MongoDB/JWT Admin CRUD Boilerplate",
"author": "Edmund Pfeil <edmundpf@buffalo.edu>",
"private": true,
"scripts": {
"dev": "grunt sync && nuxt",
"build": "grunt sync && nuxt build",
"start": "grunt sync && nuxt start",
"generate": "grunt sync && nuxt generate",
"server": "coffee data_api/src/index.coffee",
"setup": "coffee setup.coffee"
},
"dependencies": {
"@nuxtjs/axios": "^5.4.1",
"bcrypt": "^3.0.6",
"bootstrap": "^4.3.1",
"bootstrap-vue": "^2.0.0-rc.25",
"cors": "^2.8.5",
"date-fns": "^1.30.1",
"edit-json-file": "^1.2.1",
"express": "^4.16.4",
"inquirer": "6.3.1",
"jquery": "^3.4.1",
"js-cookie": "^2.2.0",
"jsonfile": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"mongoose": "^5.6.4",
"mongoose-sequence": "^5.0.1",
"node-sass": "^4.11.0",
"nuxt": "^2.0.0",
"print-tools-js": "^1.1.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"require-directory": "^2.1.1",
"sass-loader": "^7.1.0",
"uuid": "^3.3.2",
"vuex-persistedstate": "^2.5.4"
},
"devDependencies": {
"coffee-loader": "^0.9.0",
"coffeescript": "^2.4.1",
"grunt": "^1.0.4",
"grunt-contrib-coffee": "^2.1.0",
"grunt-contrib-watch": "^1.1.0",
"pug": "^2.0.4",
"pug-plain-loader": "^1.0.0"
}
}