-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.61 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
{
"name": "ts-collection-project",
"private": true,
"scripts": {
"clean": "turbo run clean",
"dev": "turbo run dev --parallel --no-cache",
"build:types": "yarn tsc -b",
"build:bundle": "rollup -c",
"build": "yarn build:bundle && yarn build:types",
"lint": "turbo run lint",
"test": "turbo run test"
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"eslint": "8.7.0",
"lerna": "4.0.0",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"ts-jest": "28.0.7",
"turbo": "1.2.6",
"@babel/core": "7.17.10",
"@babel/preset-env": "7.17.10",
"@babel/preset-typescript": "7.16.7",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.1.3",
"@trivago/prettier-plugin-sort-imports": "3.1.1",
"@types/jest": "28.1.6",
"@types/node": "16.11.43",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"all-contributors-cli": "6.20.0",
"babel-jest": "28.1.3",
"babel-plugin-transform-class-properties": "6.24.1",
"husky": "7.0.4",
"jest": "28.1.3",
"nodemon": "2.0.19",
"rollup": "2.64.0",
"rollup-plugin-size": "0.2.2",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-visualizer": "5.5.2",
"ts-node": "10.4.0",
"typescript": "4.5.4"
},
"turbo": {
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**"
]
},
"test": {
"outputs": []
},
"dev": {
"cache": false
}
}
}
}