-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.94 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
53
54
55
56
57
58
59
60
61
{
"name": "nuxt-typescript",
"version": "1.0.0",
"description": "My awesome Nuxt.js project",
"author": "Pavel Svitek",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.ts",
"dev:js": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "npm run build:client && npm run build:server",
"build:client": "nuxt build",
"build:server": "tsc -p server/",
"start": "cross-env NODE_ENV=production node server-dist/index.js",
"generate": "nuxt generate",
"test:client": "jest",
"test:client:watch": "npm run test:client -- --watch",
"test:server": "jest --config server/jest.config.js",
"test:server:watch": "npm run test:server -- --watch"
},
"dependencies": {
"@marcdiethelm/nuxtjs-countly": "^0.6.0",
"@nuxtjs/axios": "^5.12.2",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/robots": "^2.4.2",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/style-resources": "^1.0.0",
"@types/axios": "^0.14.0",
"axios": "^0.20.0",
"countly-sdk-web": "^20.4.0",
"cross-env": "^7.0.2",
"element-ui": "^2.13.2",
"express": "^4.17.1",
"nuxt": "^2.14.4",
"qr-code-styling": "^1.2.0",
"reflect-metadata": "^0.1.13",
"route-cache": "^0.4.5",
"typedi": "^0.8.0",
"vue-sticky-directive": "0.0.10",
"vue-tweet-embed": "^2.4.0"
},
"devDependencies": {
"@nuxt/typescript-build": "^0.6.0",
"@types/jest": "^26.0.13",
"@vue/test-utils": "^1.0.5",
"babel-jest": "^26.3.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"sass-loader": "^10.0.2",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"vue-jest": "^4.0.0-0",
"vue-property-decorator": "^8.4.1",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.12"
}
}