-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 KB
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
{
"name": "@alfa-code/microforms",
"version": "1.0.1",
"main": "index.js",
"repository": "git@github.com:alfa-code/microforms.git",
"author": "Hydrock <hydrock@yandex.ru>",
"license": "MIT",
"scripts": {
"test": "NODE_ENV='test' jest",
"lint": "exit 0",
"build": "yarn build:js && yarn build:types",
"build:js": "webpack --config ./webpack.config.js",
"build:types": "tsc --emitDeclarationOnly",
"deploy": "cd dist && npm publish --access public"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/react": "^17.0.36",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.0.0",
"formik": "^2.2.9",
"jest": "^27.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.9",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"peerDependencies": {
"formik": "^2.2.9",
"react": "^17.0.2"
}
}