-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
158 lines (158 loc) · 4.9 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "Hedron",
"author": "Nudibranch Records",
"description": "Perform live shows with your three.js creations",
"version": "0.6.0",
"homepage": "https://github.com/nudibranchrecords/hedron",
"repository": {},
"license": "AGPL-3.0+",
"scripts": {
"lint": "eslint src config example-projects mockTests",
"lint:css": "stylelint \"src/components/**/*.js\"",
"lint:fix": "yarn lint -- --fix",
"test": "yarn lint && yarn jest && cross-env NODE_ENV=test tape-watch --once -r @babel/register src/**/*.spec.js mockTests/**/*.spec.js -p tap-diff",
"test:dev": "cross-env NODE_ENV=test tape-watch -r @babel/register src/**/*.spec.js mockTests/**/*.spec.js -p tap-diff",
"test-jest": "yarn jest --watch",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"start": "yarn electron-webpack dev"
},
"electronWebpack": {
"renderer": {
"webpackConfig": "config/webpack.custom.config.js",
"sourceDirectory": "src/electron/renderer"
},
"main": {
"sourceDirectory": "src/electron/main"
}
},
"build": {
"linux": {
"target": [
"AppImage"
]
}
},
"jest": {
"testMatch": [
"**/?(*.)+(test).[jt]s?(x)"
],
"moduleNameMapper": {
"\\.(txt)$": "<rootDir>/testUtils/fileMock.js"
},
"setupFilesAfterEnv": [
"./setup.jest.js"
]
},
"glslify": {
"transform": [
"glslify-import"
]
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@tweenjs/tween.js": "^17.2.0",
"array-move": "^2.1.0",
"babel-loader": "^8.0.5",
"chokidar": "^3.0.0",
"connected-react-router": "^6.5.2",
"create-react-class": "^15.5.2",
"err-code": "^1.1.2",
"eventemitter3": "^3.0.1",
"glslify": "^7.0.0",
"glslify-import": "^3.1.0",
"history": "^4.6.1",
"jsonfile": "^2.4.0",
"lodash": "^4.17.19",
"performance-now": "^2.1.0",
"postprocessing": "^6.10.0",
"proxyquire": "^1.7.11",
"react": "^16.9.0",
"react-addons-perf": "^15.4.2",
"react-create-class": "^1.0.0",
"react-dom": "^16.9.0",
"react-hot-loader": "next",
"react-input-autosize": "^1.1.3",
"react-popper": "^1.3.3",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-sortable-hoc": "^1.9.1",
"recompose": "^0.26.0",
"redux": "^3.6.0",
"redux-action-listeners": "^1.0.2",
"redux-batched-subscribe": "^0.1.6",
"redux-debounce": "^1.0.1",
"redux-form": "^8.2.6",
"redux-ignore": "^1.2.4",
"reselect": "^4.0.0",
"source-map-support": "^0.5.16",
"stats.js": "^0.17.0",
"styled-components": "^5.0.0-beta.9",
"tap-diff": "^0.1.1",
"tap-tempo": "^0.1.1",
"three": "^0.112.1",
"tinycolor2": "^1.4.1",
"try-require": "^1.2.1",
"uid": "^0.0.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.3.1",
"babel-eslint": "8.2.6",
"babel-plugin-styled-components": "^1.10.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^3.4.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.7",
"deep-freeze": "^0.0.1",
"electron": "^10.1.5",
"electron-builder": "^22.2.0",
"electron-debug": "^1.4.0",
"electron-devtools-installer": "^3.1.1",
"electron-log": "^2.2.14",
"electron-webpack": "^2.8.2",
"eslint": "^6.1.0",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-standard": "^2.0.1",
"jest": "^24.1.0",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"minimist": "^1.2.3",
"redux-debounced": "^0.4.0",
"redux-devtools-extension": "^2.13.7",
"sinon": "^2.1.0",
"style-loader": "^0.16.1",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0",
"stylelint-processor-styled-components": "^0.1.0",
"svg-inline-loader": "^0.7.1",
"tap-colorize": "^1.2.0",
"tape": "^4.6.3",
"tape-watch": "^2.3.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^5.4.0"
}
}