forked from ealush/vest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.09 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
{
"license": "MIT",
"scripts": {
"build": "node ./scripts/buildAll",
"clean": "git clean -xdf --exclude=node_modules",
"prettier-watch": "onchange '**/*.js' '**/*.json' -- prettier --write {{changed}}",
"dev": "onchange -i './packages/**/src/**/*.js' -- yarn genJSConfig",
"genJSConfig": "node ./scripts/genJsconfig",
"test": "jest --projects ./packages/*",
"lint": "eslint . --ignore-path .gitignore",
"pretest": "yarn genJSConfig",
"docs": "node scripts/release/steps/updateDocs"
},
"husky": {
"hooks": {
"pre-commit": "yarn genJSConfig && pretty-quick"
}
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true
},
"jest": {
"testEnvironment": "node"
},
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.0",
"@babel/register": "^7.13.8",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-add-module-exports": "^1.0.4",
"cross-env": "^7.0.3",
"date-fns": "^2.21.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"faker": "^5.5.3",
"fs-extra": "^9.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"onchange": "^7.1.0",
"prettier": "2.2.1",
"pretty-quick": "^3.1.0",
"rollup": "^2.46.0",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.3.5",
"typescript": "^4.2.4",
"validator": "^13.5.2",
"vest": "^3.0.0",
"wait": "^0.4.2"
}
}