-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
50 lines (50 loc) · 1.45 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-ink",
"version": "6.5.4",
"description": "A React component for adding material design style ink.",
"main": "dist/ink.js",
"scripts": {
"start": "webpack-dev-server --mode=development",
"build": "./bin/bundle",
"build:example": "NODE_OPTIONS='--openssl-legacy-provider' webpack --mode=production",
"prepublish": "yarn build",
"lint": "eslint . --cache --cache-location=node_modules/ --ignore-path=.gitignore",
"format": "prettier --write './{src,example}/**/*.js' './*.js'"
},
"repository": {
"type": "git",
"url": "git@github.com:vigetlabs/react-ink.git"
},
"keywords": [
"react",
"material design"
],
"author": "Viget Labs <developers@viget.com>",
"license": "MIT",
"devDependencies": {
"@types/react": "^16.3.17",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.9.1",
"prettier": "^1.13.5",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"rollup": "^0.60.2",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-filesize": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.1.4"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}