-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "baardagaam",
"version": "1.0.0",
"description": "Another build tool with Gulp and Webpack",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development gulp",
"build": "cross-env NODE_ENV=production gulp build"
},
"author": "Jeffrey Dufour",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@svgr/webpack": "^5.5.0",
"@types/webpack-env": "^1.16.0",
"babel-loader": "^8.2.2",
"browser-sync": "^2.26.14",
"bundle-stats-webpack-plugin": "^2.7.2",
"cross-env": "^7.0.3",
"del": "^6.0.0",
"file-loader": "^6.2.0",
"gulp": "^4.0.2",
"gulp-dart-sass": "^1.0.2",
"gulp-ejs": "^5.1.0",
"gulp-prettier": "^3.0.0",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"webpack": "^5.24.4",
"webpack-dev-middleware": "^4.1.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "^3.1.0",
"webpack-merge": "^5.7.3",
"webpack-stream": "^6.1.2"
},
"dependencies": {
"normalize.css": "^8.0.1"
}
}