-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.02 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
{
"name": "toolkit",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"test": "cross-env BABEL_ENV=commonjs NODE_ENV=test jest --no-cache",
"lint": "eslint ./packages",
"publish": "git pull --rebase && check-installed-dependencies && npm run build && lerna publish --skip-temp-tag --conventional-commits --message 'chore: Publish [skip-ci]' && git push"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.11.2",
"@fintory/eslint-config": "^0.3.3",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-plugin-styled-components": "^1.11.1",
"check-installed-dependencies": "1.0.1",
"cross-env": "5.2.0",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.7.0",
"eslint": "6.1.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-flowtype": "3.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "24.0.0",
"lerna": "3.5.0",
"microbundle": "^0.12.4",
"prettier": "^1.18.2",
"prettier-eslint": "8.8.2",
"react": "16.6.3",
"react-dom": "16.6.3",
"rimraf": "2.6.2",
"styled-components": "4.1.1",
"typescript": "^4.0.2"
},
"dependencies": {
"ts-jest": "^26.3.0"
},
"jest": {
"verbose": true,
"cacheDirectory": ".jest",
"setupFilesAfterEnv": [
"<rootDir>internals/tests/setup.js"
],
"testMatch": [
"**/test/**/*.js",
"**/test/**/*.(ts|tsx)"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.ts$": "ts-jest"
}
}
}