-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.55 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
{
"name": "tiktaktoe",
"description": "Tik Tak Toe Game",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"remove-bundle": "./node_modules/.bin/rimraf ./packages/__bundle",
"code-formatter": "yarn prettier --write .",
"prehusky": "./node_modules/.bin/rimraf .husky",
"husky": "./node_modules/.bin/husky install",
"posthusky": "./node_modules/.bin/ts-node scripts/src/husky/index.ts",
"check-copyright": "./node_modules/.bin/ts-node scripts/src/check-copyright/index.ts",
"projects:build:webpack": "yarn projects:clean && yarn projects:bootstrap && yarn projects:build && ./node_modules/webpack/bin/webpack.js --config webpack.config.js --mode production --context ./packages",
"projects:build": "./node_modules/.bin/lerna run build",
"projects:bootstrap": "./node_modules/.bin/lerna bootstrap",
"projects:cli:start": "./node_modules/.bin/lerna run start --scope @tiktaktoe/ui",
"projects:test": "./node_modules/.bin/lerna run test --parallel",
"projects:clean": "./node_modules/.bin/lerna run clean --parallel",
"projects:lint:fix": "./node_modules/.bin/lerna run lint:fix --parallel",
"projects:lint": "./node_modules/.bin/lerna run lint --parallel",
"projects:audit": "yarn audit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagoolsilva/tiktaktoe.git"
},
"author": "Thiago Lopes da Silva <[email protected]>",
"bugs": {
"url": "https://github.com/thiagoolsilva/tiktaktoe/issues"
},
"homepage": "https://github.com/thiagoolsilva/tiktaktoe#readme",
"devDependencies": {
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "16.0.0",
"@types/fs-readdir-recursive": "1.0.0",
"@types/jest": "27.0.1",
"@types/shelljs": "0.8.9",
"@types/yargs": "17.0.3",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@typescript-eslint/parser": "5.2.0",
"duplicate-package-checker-webpack-plugin": "3.0.0",
"eslint": "8.1.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-sort-imports-es6-autofix": "0.6.0",
"fs-readdir-recursive": "1.1.0",
"husky": "7.0.2",
"jest": "27.2.0",
"lerna": "4.0.0",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"rimraf": "3.0.2",
"shelljs": "0.8.5",
"ts-jest": "27.0.5",
"ts-loader": "9.2.5",
"ts-node": "10.2.1",
"typescript": "4.4.3",
"webpack": "5.60.0",
"webpack-cli": "4.9.1"
},
"resolutions": {
"json-schema": "0.4.0",
"ansi-regex": "5.0.1",
"lerna/node-fetch": "2.6.7"
}
}