-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) 路 2.18 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) 路 2.18 KB
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
{
"name": "ravyd",
"version": "0.1.0",
"private": true,
"description": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nokazn/ravyd"
},
"author": {
"name": "nokazn",
"url": "https://github.com/nokazn"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": "14.x"
},
"scripts": {
"postinstall": "husky install",
"lint": "eslint --ext .ts,.js,.vue --ignore-path .eslintignore .",
"lint:fix": "yarn lint --fix",
"stylelint": "stylelint --ignore-path .stylelintignore \"**/*.{css,scss,vue}\"",
"stylelint:fix": "yarn stylelint --fix",
"tsc": "tsc --noEmit",
"vtc": "vtc --workspace packages/client/ --srcDir packages/client/",
"test": "jest packages/",
"test:ci": "jest packages/ --ci",
"steps": "find . -type f -not -path \"**/node_modules/**\" -not -path \"./.nuxt/**\" -not -path \"**/dist/**\" | grep -e '.+(\\|\\.ts$\\|\\.js$\\|\\.vue$\\|\\.scss$\\|\\.json\\|)' | xargs wc -l",
"steps:ts": "find . -type f -not -path \"**/node_modules/**\" -not -path \"./.nuxt/**\" -not -path \"**/dist/**\" | grep -e '\\.ts$' | xargs wc -l",
"steps:vue": "find . -type f -not -path \"**/node_modules/**\" -not -path \"./.nuxt/**\" -not -path \"**/dist/**\" | grep -e '\\.vue$' | xargs wc -l"
},
"_moduleAliases": {
"~~": "dist",
"@": "dist/server",
"shared": "dist/shared"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@nuxtjs/eslint-config-typescript": "^6.0.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.12",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-nuxt": "^2.0.0",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-scss": "^3.19.0",
"ts-jest": "^26.4.4",
"typescript": "~4.1"
}
}