-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.29 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.29 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@davidisaaclee/vsynth",
"version": "1.4.1",
"private": true,
"homepage": "http://david-lee.net/vsynth",
"dependencies": {
"@davidisaaclee/graph": "^1.0.1",
"@davidisaaclee/react-video-graph": "^2.0.0",
"@davidisaaclee/video-graph": "^2.0.0",
"@mojotech/json-type-validation": "^2.0.0",
"@types/lodash": "^4.14.109",
"@types/react-redux": "^6.0.1",
"classnames": "^2.2.6",
"gl-shader-extract": "^1.1.2",
"lodash": "^4.17.10",
"pepjs": "^0.4.3",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-hotkeys": "^1.1.4",
"react-markdown": "^3.3.4",
"react-modal": "^3.4.5",
"react-player": "^1.6.4",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts-ts": "2.16.0",
"redux": "^4.0.0",
"redux-persist": "^5.10.0",
"redux-undo": "^1.0.0-beta9-9-7",
"reselect": "^3.0.1",
"styled-components": "^3.3.3",
"typesafe-actions": "^2.0.4",
"uuid": "^3.2.1"
},
"scripts": {
"deploy": "npm run build && npm run clean:gh-pages && npm run gh-pages-populate && sh ./scripts/deploy.sh",
"deploy:patch": "npm run deploy patch",
"deploy:minor": "npm run deploy minor",
"deploy:major": "npm run deploy major",
"gh-pages-populate": "copyfiles 'build/**/*' gh-pages/ --up 1",
"clean:gh-pages": "rimraf gh-pages/*",
"clean:glslify": "rimraf ./src/shaders/*.generated.ts",
"build:glslify": "node ./scripts/build-shaders.js --inputDir ./src/shaders/glsl --outputDir ./src/shaders",
"build:cra": "react-scripts-ts build",
"start": "react-scripts-ts start",
"build": "npm run build:glslify && npm run build:cra",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
},
"devDependencies": {
"@types/classnames": "^2.2.4",
"@types/jest": "^23.0.0",
"@types/node": "^10.3.0",
"@types/react": "^16.3.16",
"@types/react-dom": "^16.0.5",
"@types/react-modal": "^3.1.2",
"@types/react-router-dom": "^4.2.7",
"@types/redux-persist": "^4.3.1",
"@types/uuid": "^3.4.3",
"copyfiles": "^2.0.0",
"glsl-crosshatch-filter": "^1.0.0",
"glsl-dither": "^1.0.1",
"glsl-fast-gaussian-blur": "^1.0.2",
"glslify": "^6.1.1",
"node-glob": "^1.2.0",
"rimraf": "^2.6.2",
"typescript": "^2.9.1"
}
}