This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.6 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
{
"name": "react-moengage",
"version": "1.1.0",
"license": "MIT",
"description": "Wrapper for the MoEngage Web SDK",
"main": "./dist/react-moengage.js",
"types": "./types/index.d.ts",
"scripts": {
"start": "export NODE_ENV=development && webpack-dev-server --config webpack.config.dev.js",
"bundle": "export NODE_ENV=production && webpack -p --config webpack.config.dist.js",
"lint": "eslint --fix"
},
"author": {
"name": "Muntasir Syed",
"email": "[email protected]"
},
"repository": "git://github.com/muntasirsyed/react-moengage.git",
"homepage": "https://github.com/muntasirsyed/react-moengage.git",
"keywords": [
"react",
"javascript",
"moengage",
"library",
"frontend",
"analytics"
],
"devDependencies": {
"@babel/core": "7.12.13",
"@babel/plugin-transform-react-constant-elements": "7.12.13",
"@babel/plugin-transform-react-inline-elements": "7.12.13",
"@babel/preset-env": "7.12.13",
"@babel/preset-react": "7.12.13",
"autoprefixer": "9.7.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"eslint": "7.19.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-react": "7.22.0",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"typescript": "4.1.3",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.11.2"
},
"peerDependencies": {}
}