-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.35 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
69
70
71
72
73
74
75
{
"name": "root",
"private": true,
"devDependencies": {
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"http-server": "^0.12.3",
"lerna": "^3.20.2",
"lint-staged": "^10.1.7",
"lodash.camelcase": "^4.3.0",
"prettier": "2.0.5",
"source-map-loader": "^0.2.4",
"webpack-bundle-analyzer": "^3.7.0"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@salte-auth/popup": "1.0.0-rc.2",
"@salte-auth/salte-auth": "3.0.0-rc.8",
"acorn": "^7.1.1",
"jest": "^24.9.0",
"jest-environment-jsdom-fifteen": "^1.0.0",
"jest-fetch-mock": "^2.1.2",
"mitt": "^1.1.3",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.0",
"typescript": "3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"peerDependencies": {
"acorn": "^7.0.0"
},
"scripts": {
"watch": "lerna run watch --parallel --stream",
"build": "lerna run build --stream",
"build:watch": "lerna run build:watch --stream --parallel",
"build:debug": "lerna run build:debug --stream",
"postinstall": "lerna bootstrap --hoist",
"pretest": "lerna run build",
"test": "lerna run test --stream",
"test:watch": "lerna run --parallel test:watch",
"prettify": "lerna exec -- npm run prettify --stream --colors",
"lint": "lerna exec -- npm run lint",
"lint:fix": "lerna run lint:fix --stream",
"release": "npm install && npm run test && npm run build && lerna publish --force-publish=* --conventional-commits",
"prerelease": "npm install && npm run test && npm run build && lerna publish --dist-tag prerelease --force-publish=* --preid rc",
"serve": "http-server --cors -p 5001"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint"
]
}
}