-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.53 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
{
"name": "rodones-map",
"version": "1.0.0",
"description": "rodones map front-end",
"private": true,
"scripts": {
"start": "webpack serve",
"build": "webpack build",
"build:prod": "NODE_ENV=production webpack build",
"lint": "eslint src/**/*.js --fix",
"clean": "rimraf dist",
"analyze": "NODE_ENV=production webpack --profile --json dist/stats.json && webpack-bundle-analyzer dist/stats.json -m static -r dist/report.html -O"
},
"dependencies": {
"lit": "^2.2.3",
"nipplejs": "^0.9.1",
"process": "^0.11.10",
"stats.js": "^0.17.0",
"three": "^0.140.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/runtime": "^7.17.9",
"@types/ramda": "^0.28.11",
"babel-loader": "^8.2.5",
"compression-webpack-plugin": "^9.2.0",
"copy-webpack-plugin": "^10.2.4",
"dotenv": "^16.0.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-lit": "^1.6.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-wc": "^1.3.2",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.6.2",
"ramda": "^0.28.0",
"rimraf": "^3.0.2",
"source-map-explorer": "^2.5.2",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpackbar": "^5.0.2"
}
}