-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
60 lines (60 loc) · 1.75 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
{
"name": "appsignal-javascript",
"private": true,
"dependencies": {},
"devDependencies": {
"@angular/core": "^12.2.15",
"@testing-library/preact": "^2.0.1",
"@testing-library/react": "^13.0.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@types/node-fetch": "^2.5.7",
"@types/react": "^18.1.0",
"@types/react-dom": "^18.1.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"preact": "^10.5.7",
"prettier": "2.1.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"stimulus": "^1.1.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"vue": "^3.2.20",
"webpack": "^5.76.0"
},
"scripts": {
"bootstrap": "echo Please run 'mono bootstrap' instead.",
"bootstrap:ci": "echo Please run 'mono bootstrap --ci' instead.",
"build": "echo Please run 'mono build' instead.",
"build:watch": "echo Please run 'mono run npm run build:watch --parallel' instead.",
"build:ext": "echo Please run 'mono run npm run build:ext --package @appsignal/nodejs-ext' instead.",
"build:cjs": "echo Please run 'mono run yarn run build:esm' instead.",
"build:esm": "echo Please run 'mono run yarn run build:esm' instead.",
"clean": "echo Please run 'mono clean' instead.",
"test": "echo Please run 'mono test' instead.",
"lint": "prettier --check **/*.{js,ts,tsx}",
"lint:write": "prettier --write **/*.{js,ts,tsx}"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"workspaces": [
"packages/*"
],
"volta": {
"node": "14.15.1",
"yarn": "1.22.10"
}
}