-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.92 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
{
"version": "1.0.0",
"name": "sound-particles",
"description": "PixiJS audio reactive particles",
"author": "Ustym Ukhman <ustym.ukhman@gmail.com>",
"homepage": "https://github.com/UstymUkhman/sound-particles",
"main": "src/index.js",
"license": "WTFPL",
"scripts": {
"start": "webpack-dev-server --inline --progress",
"lint:css": "stylelint **/*.{html,css}",
"build": "webpack --env build",
"lint:js": "eslint src/*.js",
"serve": "npx http-server"
},
"dependencies": {
"gl-matrix": "^3.3.0",
"pixi.js": "^5.3.2",
"web-audio-analyser": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/runtime": "^7.10.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-dynamic-import-node": "^2.3.0",
"css-loader": "^4.0.0",
"eslint": "^7.5.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"file-loader": "^6.0.0",
"glslify-loader": "^2.0.0",
"gltf-loader-2": "^0.0.3",
"jest": "^26.1.0",
"lut-loader": "^0.0.2",
"mini-css-extract-plugin": "^0.9.0",
"minimist": "^1.2.6",
"style-loader": "^1.0.0",
"stylelint": "^15.10.1",
"stylelint-config-standard": "^20.0.0",
"terser-webpack-plugin": "^3.0.8",
"threejs-glsl-loader": "^1.0.4",
"url-loader": "^4.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.8.0",
"webpack-glsl-loader": "^1.0.1",
"worker-loader": "^2.0.0"
},
"resolutions": {
"minimist": "^1.2.5"
},
"engines": {
"node": ">= 9.10.0",
"npm": ">= 5.5.0"
}
}