-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"name": "thermomix",
"version": "1.0.0",
"description": "Spurtli's application utilities",
"scripts": {
"build": "lerna run build",
"check": "lerna run check",
"lint": "prettier --check '**/*.{ts,tsx}'",
"lint:format": "prettier --write '**/*.{ts,tsx}'",
"publish": "lerna publish --conventional-commits",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Spurtli <[email protected]> (https://spurtli.com)",
"contributors": [
{
"name": "Hannes Moser",
"email": "[email protected]",
"url": "https://hannesmoser.at/"
},
{
"name": "Neele Barthel",
"email": "[email protected]",
"url": "https://neele.codes/"
}
],
"bugs": {
"url": "https://github.com/spurtli/thermomix/issues"
},
"homepage": "https://github.com/spurtli/thermomix#readme",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/spurtli/thermomix.git"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/enzyme": "^3.10.3",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.5",
"conventional-changelog-cli": "^2.0.25",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"lerna": "^3.17.0",
"prettier": "^1.18.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"typescript": "^3.6.4"
}
}