-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "minimal-analytics",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:jahilldev/minimal-analytics.git",
"author": "James Hill <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"install": "lerna exec -- yarn",
"prepare": "husky install",
"clean": "lerna run clean",
"prebuild": "lerna bootstrap --no-ci",
"build": "run-s clean build:*",
"build:packages": "lerna run build",
"publish": "lerna run publish",
"lint": "lerna run lint",
"test": "lerna run test"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"babel-jest": "^28.1.0",
"babel-loader": "^8.2.5",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.5",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.0",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.2",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
}
}