-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
52
{
"name": "minish-maker",
"version": "1.0.0",
"description": "Minish Cap Rando",
"author": "UselessHobo",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"build-server": "nuxt generate && cp -R dist/* /var/www/html",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/localforage": "^1.0.2",
"@nuxtjs/markdownit": "^1.2.6",
"axios": "^0.19.0",
"cross-env": "^5.2.0",
"dot-prop": "^4.2.1",
"elliptic": "^6.5.3",
"express": "^4.16.4",
"flag-icon-css": "^3.3.0",
"http-proxy": "^1.18.1",
"kind-of": "^6.0.3",
"minimist": "^1.2.3",
"node-fetch": "^2.6.1",
"nuxt": "^2.4.0",
"nuxt-i18n": "^6.0.0",
"serialize-javascript": "^3.1.0",
"vue-clickaway": "^2.2.2",
"vue-color": "^2.7.0",
"vue-scrollto": "^2.18.1",
"yargs-parser": "^13.1.2"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"@types/express": "^4.16.1",
"@types/lodash": "^4.14.123",
"aws-api-gateway-client": "^0.2.16",
"babel-eslint": "^10.0.1",
"dotenv": "^7.0.0",
"express-fileupload": "^1.1.9",
"lodash": "^4.17.19",
"nodemon": "^1.18.9",
"sass": "^1.62.1",
"sass-loader": "^10"
}
}