-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 3.04 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@sedona-cms/core",
"version": "1.4.19",
"description": "",
"repository": {
"type": "git",
"url": "[email protected]:sedona-cms/core.git"
},
"bugs": {
"url": "https://github.com/sedona-cms/blocks/issues"
},
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "nuxt --config-file dev/nuxt.config.js",
"dev:build": "nuxt build --config-file dev/nuxt.config.js",
"dev:build:analyze": "nuxt build --analyze --config-file dev/nuxt.config.js",
"dev:start": "nuxt start --config-file dev/nuxt.config.js",
"watch": "make -f Makefile watch",
"build": "make -f Makefile build-prod",
"eslint": "eslint --fix '{src,scripts}/**/*.{js,ts,tsx}'",
"test": "npm run test:utils && npm run test:components && npm run test:e2e",
"test:utils": "jest --color --coverage src/utils/__tests__/*.test.ts",
"test:components": "jest --color --coverage src/components/*/__tests__/*.test.ts",
"test:e2e": "echo 'Test e2e'"
},
"keywords": [],
"author": "Ivan Kalinichenko <[email protected]>",
"license": "MIT",
"dependencies": {
"ajv": "^6.12.4",
"nanoid": "^3.1.12",
"quasar": "^1.13.1",
"vue-typed-mixins": "^0.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@nuxt/types": "^2.14.4",
"@nuxtjs/bulma": "^1.3.0",
"@sedona-cms/eslint-config": "^1.2.4",
"@types/jest": "^25.2.3",
"@types/node": "^13.13.15",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"@vue/babel-preset-jsx": "^1.1.2",
"@vue/test-utils": "^1.0.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.5.1",
"husky": "^4.2.5",
"jest": "^25.5.4",
"lint-staged": "^10.2.13",
"npm-self-link": "^1.1.7",
"nuxt": "^2.14.4",
"postcss": "^7.0.32",
"postcss-prefixwrap": "^1.16.0",
"postcss-remove-rules": "^1.0.0",
"prettier": "2.0.1",
"ts-jest": "^25.5.1",
"tsc-watch": "^4.2.9",
"typescript": "^3.9.7",
"vue-jest": "^3.0.6",
"web-streams-polyfill": "^2.1.1"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"json",
"jsx",
"ts",
"tsx",
"vue"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.(ts|tsx)$": "ts-jest",
"^.+\\.vue$": "vue-jest"
},
"globals": {
"ts-jest": {
"babelConfig": true,
"tsConfig": "tsconfig.test.json"
}
},
"moduleNameMapper": {
"\\.(css)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js",
"~(.*)$": "<rootDir>/__mocks__/$1"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,tsx,vue,md}": [
"prettier --write"
],
"src/**/*.{js,ts,tsx}": [
"prettier --write",
"npm run eslint"
],
"dev/**/*.{js,vue,json}": [
"prettier --write"
],
"scripts/*.js": [
"prettier --write",
"npm run eslint"
]
}
}