-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.95 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.95 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
{
"name": "makers",
"version": "1.0.0",
"description": "A wordpress theme that enables WebXR in WordPress.",
"main": "src/js/app/index.js",
"repository": "https://github.com/WebXROSFellowship/makers.git",
"author": "The Team of the WebXR Open Source Fellowship Ben Erwin, Aryan Grover, Pratham Gupta, Ananya Jain, Shravani Kaware, Kunaal Mangal, Surbhi Sharma.",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch",
"build": "webpack --config webpack.config.js",
"build:prod": "webpack --mode=production --node-env=production",
"lerna": "lerna",
"watch": "nodemon --watch src/js/app --watch src/js/vendor --watch src/scss -e js,scss --exec 'webpack --watch'",
"dev": "next dev",
"clean": "rm -rf node_modules/ package-lock.json yarn.lock"
},
"dependencies": {
"@babel/runtime": "^7.21.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@webpack-cli/generators": "^3.0.4",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"babel-plugin-module-resolver": "^5.0.0",
"browser-sync-webpack-plugin": "^2.3.0",
"css-loader": "^6.7.4",
"css-minimizer-webpack-plugin": "^5.0.0",
"dotenv-webpack": "^8.0.1",
"html-webpack-plugin": "^5.5.1",
"ignore-emit-webpack-plugin": "^2.0.6",
"mini-css-extract-plugin": "^2.7.6",
"nodemon": "^2.0.22",
"postcss": "^8.4.23",
"postcss-loader": "^7.3.0",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.3",
"webpack": "^5.83.1",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"workbox-webpack-plugin": "^6.5.4"
}
}