-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.01 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
{
"name": "mix-it",
"author": "jordantaillefer <[email protected]>, Falinor",
"version": "0.4.0",
"private": true,
"engines": {
"node": ">= 12"
},
"workspaces": [
"packages/**"
],
"scripts": {
"build": "lerna --scope ${PACKAGES_DIR} run build -- --dest ../../dist",
"test": "lerna run test",
"test:api": "lerna run test --scope api",
"test:client": "lerna run test --scope mix-it-client",
"test:front": "lerna run test --scope mix-it-front",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/convict": "^4.2.1",
"@types/jest": "^25.1.4",
"@types/socket.io-client": "^1.4.32",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"@vue/cli-plugin-e2e-cypress": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-pwa": "^4.1.0",
"@vue/cli-plugin-router": "^4.1.0",
"@vue/cli-plugin-typescript": "^4.1.0",
"@vue/cli-plugin-unit-jest": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.2.2",
"husky": "4.2.5",
"jest-extended": "^0.11.2",
"jest-mock-extended": "^1.0.8",
"lerna": "^3.20.2",
"lint-staged": "10.1.3",
"node-sass": "^4.12.0",
"prettier": "2.0.2",
"sass-loader": "^8.0.0",
"semantic-release": "^17.1.1",
"typescript": "~3.8.3",
"vue-template-compiler": "^2.6.10"
},
"lint-staged": {
"**/*.{js,ts,tsx,css,md}": "prettier --write"
},
"dependencies": {
"mix-it-api": "file:packages/mix-it-api",
"mix-it-client": "file:packages/mix-it-client",
"mix-it-front": "file:packages/mix-it-front"
},
"repository": {
"type": "git",
"url": "https://github.com/codenights/mix-it.git"
}
}