-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
57 lines (57 loc) · 1.67 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --stream",
"clean": "lerna run clean --stream && rimraf node_modules docs",
"deploy:version": "lerna version",
"deploy:publish": "lerna publish",
"docs": "typedoc",
"docs:check": "typedoc --emit none",
"fix": "lerna run fix --stream",
"lint": "lerna run lint --stream",
"lint:staged": "lint-staged",
"postinstall": "husky install",
"test": "lerna run test --stream",
"test:examples": "jest --env=jsdom --coverage=false examples --setupFiles ./jest.setup.examples.js",
"test:unit": "lerna run test --stream --ignore @amplitude/analytics-*-test",
"test:e2e": "lerna run test --stream --scope @amplitude/analytics-*-test",
"version": "git add -A"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.14",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.6",
"fake-indexeddb": "4.0.2",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lerna": "^8.1.5",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.22",
"typescript": "^4.9.4",
"yargs": "^17.7.1"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"tslib": "^2.4.1"
}
}