-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 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
{
"name" : "domdom-app",
"version" : "0.0.1",
"author" : "zero88",
"license" : "Apache-2.0",
"private" : true,
"description" : "IFTTT flow - Low-code programming for event-driven applications",
"devDependencies" : {
"@babel/cli" : "^7.16.0",
"@babel/core" : "7.12.3",
"@babel/preset-env" : "^7.16.4",
"@babel/preset-typescript" : "^7.16.0",
"@parcel/packager-ts" : "^2.0.1",
"@parcel/transformer-typescript-types" : "^2.0.1",
"@tsconfig/recommended" : "^1.0.1",
"@types/jest" : "^27.0.3",
"@types/node" : "^16.11.10",
"@typescript-eslint/eslint-plugin" : "^5.7.0",
"@typescript-eslint/parser" : "^4.5.0",
"@typescript-eslint/typescript-estree" : "^5.7.0",
"@vercel/ncc" : "^0.33.0",
"babel-eslint" : "^10.1.0",
"babel-jest" : "^26.6.0",
"babel-loader" : "8.1.0",
"babel-plugin-import" : "^1.13.3",
"eslint" : "^7.32.0",
"eslint-config-airbnb-typescript" : "^16.1.0",
"eslint-config-prettier" : "^8.3.0",
"eslint-plugin-import" : "^2.22.1",
"eslint-plugin-jest" : "^24.1.0",
"eslint-plugin-promise" : "^5.2.0",
"eslint-plugin-testing-library" : "^3.9.2",
"jest" : "27.3.1",
"jest-junit" : "^13.0.0",
"lerna" : "^4.0.0",
"parcel" : "^2.0.1",
"parcel-optimizer-add-license" : "^0.2.2",
"prettier" : "^2.5.1",
"rimraf" : "^3.0.2",
"ts-jest" : "^27.1.1",
"ts-loader" : "^9.2.6",
"typescript" : "^4.5.2"
},
"scripts" : {
"build" : "CI=false lerna run build",
"clean" : "CI=false lerna run clean",
"lint" : "CI=false lerna run lint",
"test" : "lerna run test",
"typecheck" : "CI=false lerna run typecheck",
"app:start" : "yarn workspace @domdom/app start",
"es4x:start" : "yarn workspace @domdom/es4x start"
},
"workspaces" : [
"app",
"packages/*"
]
}