-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "@sht-dev/fancy-tree",
"version": "0.2.3",
"description": "A client-side tree that's FANCY",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"examples": "yarn build && webpack-dev-server --config webpack.examples.config.js",
"build": "rm -rf ./dist && webpack --mode=production",
"watch": "webpack --watch --mode=production",
"clean": "rm -rf ./dist",
"deploy": "yarn build && yarn publish --access public"
},
"repository": "https://github.com/seven-hills-technology/fancy-tree.git",
"author": "Sean Price <[email protected]>",
"license": "MPL-2.0",
"dependencies": {},
"peerDependencies": {
"@fortawesome/fontawesome-free": "^5.11.2"
},
"devDependencies": {
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"css-loader": "^3.2.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.0",
"react": "^16.9.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"ts-loader": "^6.1.0",
"typescript": "^3.6.3",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1",
"webpack-node-externals": "^1.7.2"
},
"files": [
"dist/**/*"
]
}