-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.56 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "oilpattern.com",
"version": "0.0.0",
"description": "",
"scripts": {
"prestart": "rimraf ./build",
"start": "webpack-dev-server --open --config ./_scripts/webpack.config.js --content-base ./public/dist",
"prebuild": "rimraf ./build",
"build": "cross-env NODE_ENV=production webpack --mode production --config ./_scripts/webpack.config.js --optimize-minimize",
"prewebpack": "rimraf ./build",
"webpack": "webpack --watch --mode development --config ./_scripts/webpack.config.js",
"lint": "eslint -c ./package.json ./"
},
"engines": {
"node": "^8.0.0"
},
"author": "Glenn de Haan",
"license": "MIT",
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"no-console": 0,
"react/prop-types": 0,
"comma-dangle": [
"error",
"never"
],
"indent": [
"error",
4
]
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"settings": {
"react": {
"pragma": "h",
"version": "16.0"
}
}
},
"eslintIgnore": [
"public/dist"
],
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-transform-react-jsx": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"animejs": "^3.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.5",
"create-file-webpack": "^1.0.2",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-react": "^7.16.0",
"html-webpack-plugin": "^3.2.0",
"material-design-lite": "^1.3.0",
"mini-css-extract-plugin": "^0.8.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.13.0",
"preact": "^10.0.4",
"preact-virtual-list": "^0.3.1",
"replace-in-file-webpack-plugin": "^1.0.6",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"sitemap-webpack-plugin": "^0.6.0",
"uglifyjs-webpack-plugin": "^2.1.3",
"unistore": "^3.5.1",
"uuid": "^3.3.2",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"devDependencies": {
"convert-excel-to-json": "^1.6.1",
"imagemagick": "^0.1.3",
"node-html-parser": "^1.1.16",
"pdf2pic": "^1.3.10",
"request": "^2.88.0"
}
}