-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 3.26 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
67
68
69
{
"name": "@polygonjs/plugin-palette",
"version": "1.0.12",
"engines": {
"node": ">=12.16.1",
"yarn": ">=1.22.4"
},
"description": "Color Palette plugin for the 3D engine https://polygonjs.com",
"repository": {
"url": "[email protected]:polygonjs/plugin-palette.git",
"type": "git"
},
"keywords": [
"3D",
"javascript",
"webgl",
"procedural",
"node-based",
"color",
"palette"
],
"author": "Guillaume Fradin <[email protected]>",
"license": "MIT",
"main": "./dist/index.js",
"scripts": {
"start": "webpack-dev-server --env.NODE_ENV=development --env.production=false --config config/webpack/dev.js",
"build": "export NODE_OPTIONS='--max-old-space-size=32768' yarn build_folder_delete && yarn build_with_esbuild && yarn build_folder_remove_unneeded",
"build_with_webpack": "webpack --env.NODE_ENV=production --env.production --progress --config config/webpack/prod.js",
"build_with_webpack_fast": "webpack --env.NODE_ENV=production --env.production --progress --env.FAST_COMPILE=true --config config/webpack/prod.js",
"build_unpkg": "webpack --env.NODE_ENV=production --env.production --env.PUBLIC_PATH='./' --progress --config config/webpack/prod.js",
"build_verbose": "webpack --env.NODE_ENV=production --env.production --progress --display-reasons --display-used-exports --display-provided-exports --display-chunks --display-max-modules 99999 --display-origins --display-entrypoints --config config/webpack/prod.js",
"build_custom_paths_verbose": "webpack --env.NODE_ENV=production --env.production --env.PUBLIC_PATH=/packs-engine/ --env.DIST_PATH=../dist --progress --display-reasons --display-used-exports --display-provided-exports --display-chunks --display-max-modules 99999 --display-origins --display-entrypoints --config config/webpack/prod.js",
"analyze": "webpack --env.NODE_ENV=production --env.production --config config/webpack/prod.js --profile --json > config/webpack/stats.json && node_modules/.bin/webpack-bundle-analyzer config/webpack/stats.json",
"concat_dts": "./node_modules/typescript/bin/tsc --allowSyntheticDefaultImports --esModuleInterop --moduleResolution node config/webpack/dts_concat.ts; node config/webpack/dts_concat.js",
"tsc_esbuild": "./node_modules/typescript/bin/tsc config/esbuild/esbuild.ts --moduleResolution node",
"build_with_esbuild": "yarn tsc_esbuild && node config/esbuild/esbuild.js",
"build_folder_delete": "rm -rf dist/*",
"build_folder_remove_unneeded": "rm -rf dist/config && rm -rf dist/tests",
"cp_types": "cp dist/src/*.d.ts dist/"
},
"dependencies": {
"@polygonjs/polygonjs": "^1.1.149",
"chromotome": "^1.19.1"
},
"devDependencies": {
"@types/lodash": "4.14.166",
"@types/qunit": "2.11.1",
"@typescript-eslint/eslint-plugin": "4.7.0",
"@typescript-eslint/parser": "4.7.0",
"clean-webpack-plugin": "3.0.0",
"compression-webpack-plugin": "6.1.0",
"esbuild": "0.8.21",
"eslint": "7.15.0",
"html-webpack-plugin": "4.5.0",
"prettier": "2.2.1",
"qunit": "2.13.0",
"terser-webpack-plugin": "4.2.2",
"ts-declaration-webpack-plugin": "1.2.3",
"ts-loader": "8.0.11",
"ts-shader-loader": "1.0.6",
"tslib": "2.0.3",
"typescript": "4.0.5",
"webpack": "4.44.2",
"webpack-bundle-analyzer": "3.9.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0",
"webpack-merge": "5.1.4"
}
}