-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.89 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
{
"name": "scrapito-monorepo",
"description": "Scrapito monorepo",
"version": "0.0.1",
"private": true,
"workspaces": [
"packages/*"
],
"directories": {
"test": "tests"
},
"scripts": {
"build": "lerna run build",
"refresh": "lerna run build --scope @scrapito/core && lerna bootstrap && lerna run build --scope @scrapito/cli",
"lint:style": "stylelint **/*.{vue,css,scss} --ignore-path .gitignore",
"lint:script": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"lint": "npm run lint:style && npm run lint:script",
"lintfix:style": "stylelint --fix **/*.{vue,css,scss} --ignore-path .gitignore",
"lintfix:script": "eslint --fix --ext .ts,.js,.vue --ignore-path .gitignore .",
"lintfix": "npm run lintfix:style && npm run lintfix:script",
"test": "lerna run test",
"dev": "lerna run dev",
"diff": "lerna diff"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pulsar-inc/scrapito.git"
},
"author": "Pulsar Development Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/pulsar-inc/scrapito/issues"
},
"homepage": "https://github.com/pulsar-inc/scrapito#readme",
"dependencies": {
"@scrapito/core": "file:packages/core",
"node-html-parser": "^3.1.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.7.0",
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"stylelint": "^13.9.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"ts-loader": "^8.3.0",
"typescript": "^4.2.3",
"webpack-cli": "^4.7.2"
}
}