-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.12 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.12 KB
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
{
"name": "webpack-typescript-sass-wordpress",
"version": "1.0.0",
"description": "Wordpress development environment powered by Typescript + Webpack",
"main": "index.js",
"repository": "git@github.com:jsakas/webpack-typescript-sass-wordpress.git",
"author": "Jon Sakas <jon.sakas@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "WEBPACK_ENV=development APP_ENV=development webpack --watch --progress",
"build": "rm -rf build && WEBPACK_ENV=production APP_ENV=production webpack",
"lint:styles": "stylelint \"src/**/*.scss\"",
"lint:scripts": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint": "yarn lint:styles && yarn lint:scripts",
"lint:fix": "yarn lint:styles --fix && yarn lint:scripts --fix",
"modernizr": "modernizr -c .modernizr.json -d src/scripts/"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@types/body-scroll-lock": "^2.6.1",
"@types/bootstrap": "^4.5.0",
"@types/flickity": "^2.2.2",
"@types/googlemaps": "^3.39.4",
"@types/jquery": "^3.3.38",
"@types/lodash.debounce": "^4.0.6",
"@types/modernizr": "^3.5.3",
"@types/react": "^16.9.46",
"@types/scrollmagic": "^2.0.0",
"@types/wordpress__block-editor": "^2.2.8",
"@types/wordpress__blocks": "^6.4.9",
"@types/wordpress__compose": "^3.4.2",
"@typescript-eslint/eslint-plugin": "^2.32.0",
"@typescript-eslint/parser": "^2.32.0",
"@wordpress/babel-preset-default": "^4.13.0",
"@wordpress/block-editor": "^3.11.0",
"@wordpress/blocks": "^6.16.0",
"@wordpress/dependency-extraction-webpack-plugin": "^2.6.0",
"@wordpress/i18n": "^3.12.0",
"autoprefixer": "^9.7.6",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"eslint": "^7.0.0",
"eslint-plugin-react": "^7.20.6",
"file-loader": "^6.0.0",
"fs-extra": "^9.0.0",
"import-glob-loader": "^1.1.0",
"mini-css-extract-plugin": "^0.9.0",
"modernizr": "^3.11.1",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"stylelint": "^13.3.3",
"stylelint-a11y": "^1.2.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.17.2",
"terser-webpack-plugin": "^3.0.1",
"ts-loader": "^7.0.4",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.8.3",
"typescript-loader": "^1.1.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.14.0",
"@wordpress/components": "^9.6.0",
"@wordpress/compose": "^3.15.0",
"@wordpress/data": "^4.18.0",
"body-scroll-lock": "^3.0.2",
"bootstrap": "^4.4.1",
"clsx": "^1.1.0",
"core-js": "^3.6.5",
"flickity": "^2.2.1",
"flickity-fade": "^1.0.0",
"hamburgers": "^1.1.3",
"intersection-observer": "^0.10.0",
"jquery": "^3.5.1",
"lodash.debounce": "^4.0.8",
"node-sass-json-importer": "^4.3.0",
"normalize.css": "^8.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"scrollmagic": "^2.0.7",
"vanilla-lazyload": "^15.2.0"
}
}