-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.69 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
{
"name": "fflamingo",
"private": true,
"scripts": {
"test": "jest",
"test:ci": "jest --ci --runInBand --coverage --reporters=default --reporters=jest-junit",
"check-types": "lerna run --parallel check-types",
"build": "lerna run --parallel build",
"release": "yarn test && yarn check-types && yarn build && lerna publish"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@favoloso/conventional-changelog-emoji": "^0.9.0",
"@types/jest": "^24.0.6",
"codecov": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"jest-junit": "^6.3.0",
"lerna": "^3.6.0",
"prettier": "1.16.4",
"rollup": "^1.2.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"typescript": "^3.3.3"
},
"workspaces": [
"packages/*"
],
"favolosoEmoji": {
"language": "it"
},
"husky": {
"hooks": {
"commit-msg": "emoji-commit-lint"
}
},
"browserslist": "> 0.25%, not dead",
"version": "0.0.1",
"description": "Framework per lo sviluppo di applicazioni web basato su React e GraphQL",
"main": "index.js",
"repository": "https://github.com/favoloso/fflamingo.git",
"author": "Leonardo Ascione <leonardo@favoloso.team>",
"license": "MIT"
}