-
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.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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": "react-alegrify-ui",
"version": "1.0.32",
"description": "React implementation of Alegrify UI",
"main": "build/index.js",
"repository": "git@github.com:dejakob/react-alegrify-ui.git",
"author": "dejakob",
"license": "MPL",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "^7.9.4",
"@mdx-js/mdx": "^1.5.7",
"@mdx-js/react": "^1.5.7",
"babel-loader": "8.1.0",
"npm-watch": "^0.6.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"webpack": "4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"alegrify-ui": "^1.0.30"
},
"scripts": {
"build": "yarn run build:lib && yarn run build:docs && yarn run build:bundle",
"build:watch": "npm-watch build",
"build:docs": "node ./tools/generate-docs.js",
"build:lib": "babel lib -d build",
"build:lib:watch": "babel lib -w -d build",
"build:bundle": "webpack"
},
"watch": {
"build": "{lib,docs,tools}/**/*.*"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}