forked from ealush/vest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 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
{
"license": "MIT",
"dependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-proposal-pipeline-operator": "^7.10.5",
"@babel/plugin-transform-object-assign": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"@lets/wait": "^2.0.2",
"anyone": "^0.0.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.2.1",
"babel-plugin-add-module-exports": "^1.0.2",
"cross-env": "^7.0.2",
"date-fns": "^2.16.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-spellcheck": "^0.0.17",
"faker": "^5.1.0",
"fs-extra": "^9.0.1",
"husky": "^4.2.5",
"jest": "^26.4.2",
"jest-cli": "^26.4.2",
"lodash": "^4.17.20",
"mocha": "^8.1.0",
"node-fetch": "^2.6.0",
"onchange": "^7.0.2",
"prettier": "2.1.1",
"pretty-quick": "^3.0.0",
"rollup": "^2.26.7",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.1",
"semver": "^7.3.2",
"typescript": "^4.0.2",
"validator": "^13.1.1"
},
"scripts": {
"build": "node ./scripts/buildAll",
"prettier-watch": "onchange '**/*.js' '**/*.json' -- prettier --write {{changed}}",
"test": "jest --projects ./packages/*/",
"lint": "eslint . --ignore-path .gitignore"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true
}
}