-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "zrnko",
"version": "0.0.3",
"description": "Yet another state manager",
"repository": "https://github.com/miuirussia/zrnko",
"author": "Kirill Kuznetsov <kirill.desirehd@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup --config ./rollup.config.js",
"flow": "flow --show-all-errors",
"gen-types": "gen-flow-files src --out-dir dist",
"lint": "eslint src",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-flow": "^7.12.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.17.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"flow-bin": "^0.141.0",
"gen-flow-files": "^0.4.11",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2"
}
}