-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "react-digital-number-2",
"version": "1.0.3",
"description": "A package for react that provides digital numbers",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "npm run transpile",
"build": "webpack --mode production",
"deploy": "gh-pages -d examples/dist",
"publish-demo": "npm run build && npm run deploy",
"publish-prod": "npm run transpile && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Satyam-code143/react-digital-number-2.git"
},
"keywords": [
"react-digital-number",
"digital-number",
"digital",
"number"
],
"author": "Satyam Dodmani",
"license": "ISC",
"bugs": {
"url": "https://github.com/Satyam-code143/-satyam-code143-react-digital-number/issues"
},
"homepage": "https://github.com/Satyam-code143/-satyam-code143-react-digital-number#readme",
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.3",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"react-spring": "^9.4.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}