forked from TheNoim/fastify-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 903 Bytes
/
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
{
"name": "fastify-vue-plugin",
"version": "1.4.0",
"description": "Nuxt.JS for fastify",
"main": "index.js",
"repository": "https://github.com/TheNoim/fastify-vue.git",
"author": "Nils Bergmann <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"fastify-plugin": "^1.2.0",
"lodash.defaults": "^4.2.0",
"nuxt": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-preset-env": "^1.7.0",
"eslint": "^6.0.0",
"fastify": "^2.0.0",
"jest": "^23.5.0",
"nanoid": "^2.0.1",
"node-fetch": "^2.2.0",
"npm-run-all": "^4.1.3",
"regenerator-runtime": "^0.13.2"
},
"scripts": {
"build": "NODE_ENV=production nuxt build",
"_test": "NODE_ENV=production jest",
"test": "run-s build _test",
"prepublish": "run-s test",
"lint": "eslint index.js --fix"
}
}