package.json 1.3 KB
Newer Older
L
liyasthomas 已提交
1
{
N
Nityananda Gohain 已提交
2
    "name": "postwoman",
L
Liyas Thomas 已提交
3 4
    "version": "1.0.0",
    "description": "A free, fast, and beautiful API request builder",
N
Nityananda Gohain 已提交
5 6 7 8 9 10 11 12 13
    "author": "liyasthomas",
    "private": true,
    "scripts": {
        "predev": "node build.js --dev",
        "dev": "nuxt",
        "prebuild": "node build.js",
        "build": "nuxt build",
        "start": "nuxt start",
        "pregenerate": "node build.js",
Y
yubathom 已提交
14 15 16 17 18
        "generate": "nuxt generate",
        "e2e": "cypress run",
        "e2e:open": "cypress open",
        "dev:e2e": "start-server-and-test dev http://localhost:3000 e2e:open",
        "test": "start-server-and-test dev http://localhost:3000 e2e"
N
Nityananda Gohain 已提交
19 20
    },
    "dependencies": {
21
        "@nuxtjs/axios": "^5.8.0",
22
        "@nuxtjs/google-analytics": "^2.2.1",
23
        "@nuxtjs/google-tag-manager": "^2.3.1",
24
        "@nuxtjs/pwa": "^3.0.0-beta.19",
L
liyasthomas 已提交
25
        "@nuxtjs/robots": "^2.4.2",
L
Liyas Thomas 已提交
26
        "@nuxtjs/sitemap": "^2.0.0",
27
        "@nuxtjs/toast": "^3.3.0",
28
        "highlight.js": "^9.16.2",
29
        "nuxt": "^2.10.2",
A
Andrew Bastin 已提交
30
        "v-tooltip": "^2.0.2",
N
Nityananda Gohain 已提交
31 32
        "vue-virtual-scroll-list": "^1.4.2",
        "vuejs-auto-complete": "^0.9.0",
33
        "vuex-persist": "^2.1.1",
34
        "yargs-parser": "^16.1.0"
N
Nityananda Gohain 已提交
35 36
    },
    "devDependencies": {
37
        "cypress": "^3.6.0",
38
        "node-sass": "^4.13.0",
Y
yubathom 已提交
39
        "sass-loader": "^7.3.1",
40
        "start-server-and-test": "^1.10.6"
N
Nityananda Gohain 已提交
41
    }
J
Jacob Anavisca 已提交
42
}