forked from lizaiv77/utam-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.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
{
"name": "utam-example",
"private": true,
"license": "MIT",
"description": "UTAM Integration example",
"main": "index.js",
"scripts": {
"clean": "lerna exec -- rimraf build/ tsconfig.tsbuildinfo && rimraf node_modules",
"build:ts": "tsc -b",
"build": "yarn build:ts && lerna run build",
"test": "cd packages/utam-tests && yarn test"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.2",
"@rollup/plugin-typescript": "^6.0.0",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/serve-static": "^1.13.3",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"lint-staged": "^10.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.29.0",
"rollup-plugin-node-builtins": "^2.1.2",
"typescript": "^3.8.3"
},
"volta": {
"node": "12.16.2",
"yarn": "1.22.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"engines": {
"node": ">=12.16.2 <13"
}
}