-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.66 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
{
"name": "ergo_platform",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@fullhuman/postcss-purgecss": "^2.3.0",
"fuse.js": "^6.4.3",
"jquery": "^3.5.1",
"jquery-ui": "^1.12.1",
"jquery-ui-dist": "^1.12.1",
"mark.js": "^8.11.1",
"typed.js": "^2.0.11"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-flow": "^7.12.1",
"autoprefixer": "^10.3.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-prismjs": "^2.0.1",
"browser-sync": "2.26.13",
"css-loader": "^3.5.3",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"file-loader": "^6.2.0",
"gulp": "4.0.2",
"gulp-babel": "^8.0.0",
"gulp-plumber": "1.2.x",
"gulp-postcss": "^9.0.1",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "2.6.x",
"gulp-watch": "^5.0.1",
"node-sass": "^6.0.1",
"postcss": "^8.3.9",
"postcss-cli": "^9.0.1",
"source-map-explorer": "^2.5.0",
"style-loader": "^1.2.1",
"tailwindcss": "^2.2.16",
"webpack": "^4.44.1",
"webpack-stream": "^6.1.0"
},
"scripts": {
"build": "gulp build",
"watch": "gulp watch",
"analyze": "source-map-explorer 'static/js/*.js'"
},
"browserslist": [
"last 2 versions",
"IE 11",
"Firefox ESR"
],
"editorconfig-cli": [
"*.json",
"*.js",
"layouts/**/*.html",
"static/js/**/*.js",
"static/img/**/*.svg",
"static/scss/**/*.scss"
]
}