This repository has been archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.44 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "nuxt-boilerplate",
"version": "1.0.0",
"description": "Nuxt.js Boilerplate",
"author": "keitakn",
"private": true,
"scripts": {
"dev": "rm -rf .nuxt && rm -rf dist && nodemon",
"build": "rm -rf .nuxt && rm -rf dist && nuxt-ts build",
"start": "cross-env NODE_ENV=production nuxt-ts start",
"generate": "rm -rf .nuxt && rm -rf dist && nuxt-ts generate",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
"format": "eslint --fix --ext .js,.ts,.vue --ignore-path .gitignore .",
"test": "jest --config=jest.config.js",
"test:coverage": "jest --config=jest.config.js --collectCoverage=true",
"test:unit:ci": "jest --config=jest.config.js --runInBand",
"test:e2e": "testcafe chrome test/e2e/pages/*.ts",
"precommit": "npm run lint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@nuxt/typescript-runtime": "^0.3.9",
"@nuxtjs/axios": "^5.9.5",
"@nuxtjs/bulma": "^1.2.6",
"cookie-parser": "^1.4.4",
"core-js": "2.6.9",
"cross-env": "^5.2.1",
"express": "^4.17.1",
"nuxt": "^2.11.0",
"ts-node": "^8.6.2",
"universal-cookie": "^4.0.3",
"uuid": "^3.4.0"
},
"devDependencies": {
"@nuxt/typescript-build": "^0.5.7",
"@nuxtjs/eslint-config-typescript": "^0.1.3",
"@storybook/addon-actions": "^5.3.13",
"@storybook/addon-links": "^5.3.13",
"@storybook/addons": "^5.3.13",
"@storybook/vue": "^5.3.13",
"@types/cookie-parser": "^1.4.2",
"@types/eslint": "^6.1.8",
"@types/eslint-plugin-prettier": "^2.2.0",
"@types/express": "^4.17.2",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.4",
"@types/prettier": "^1.19.0",
"@types/storybook__vue": "^5.2.1",
"@types/universal-cookie": "^2.2.0",
"@types/uuid": "^3.4.7",
"@types/webpack": "^4.41.6",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@vue/test-utils": "^1.0.0-beta.31",
"axios-mock-adapter": "^1.17.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-prettier": "3.1.2",
"jest": "^25.1.0",
"nodemon": "^1.19.4",
"prettier": "1.19.1",
"testcafe": "^1.8.2",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"vue-jest": "^3.0.5"
}
}