This repository has been archived by the owner on Nov 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "@drawbotics/file-icons",
"version": "0.1.3",
"description": "Small icon library for file type icons",
"main": "dist/file-icons.js",
"scripts": {
"clean": "rimraf dist && rimraf lib",
"build:umd": "NODE_ENV=production webpack --config webpack.config.js",
"build": "npm run clean && npm run build:umd",
"build:watch": "npm run clean && NODE_ENV=production webpack --watch --config webpack.config.js",
"prepublishOnly": "npm run build",
"example": "npx rdw serve --port 4001 docs/index.mdx"
},
"repository": {
"type": "git",
"url": "https://github.com/Drawbotics/file-icons"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Nick <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@drawbotics/check-env": "^1.0.0",
"babel-loader": "^8.0.4",
"better-webpack-progress": "^1.1.0",
"css-loader": "^2.0.1",
"emotion": "^10.0.5",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.5.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"react": "^16.6.3",
"react-display-window": "^2.1.2",
"react-dom": "^16.6.3",
"rimraf": "^2.6.2",
"style-loader": "^0.23.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"classnames": "^2.2.6"
}
}