-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
80 lines (80 loc) · 1.92 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "test-fuzzy",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "webpack",
"dev": "npm run watch",
"watch": "webpack --watch",
"build:minified": "cross-env NODE_ENV=production webpack",
"cleaninstall": "rm -rf node_modules && npm i"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-runtime": "^6.26.0",
"bulma": "^0.5.3",
"dom-chef": "^2.0.0",
"fuzzaldrin-plus": "^0.5.0",
"getdomain": "^1.0.7",
"grapnel": "^0.6.4",
"lodash.sortby": "^4.7.0",
"math-expression-evaluator": "^1.2.17",
"normalize.css": "^7.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"eslint": "^4.7.2",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"imagemin-webpack-plugin": "^1.5.2",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^1.0.0-beta.2",
"webextension-polyfill": "^0.1.1",
"webpack": "^3.6.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"chrome": 49
}
}
]
],
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h",
"useBuiltIns": true
}
],
[
"transform-runtime",
{
"polyfill": true,
"regenerator": true
}
]
]
}
}