-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.42 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
{
"name": "vision2020",
"version": "1.0.0",
"description": "Vision2020: Seat at the Table — An interactive exhibit coming to the Kimmel Center March 2020",
"author": "Lou Huang, Bad Idea Factory <[email protected]> (https://biffud.com/)",
"repository": {
"type": "git",
"url": "https://github.com/BadIdeaFactory/vision2020.git"
},
"license": "GNU General Public License v3.0",
"private": true,
"main": "main/index.js",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build && next export",
"electron": "electron .",
"dist": "npm run build && electron-builder --dir",
"static": "npx serve -p 3010 out",
"postinstall": "electron-builder install-app-deps && husky install"
},
"build": {
"asar": true,
"extraResources": [
{
"from": "out",
"to": "app/renderer"
}
]
},
"peerDependencies": {
"webpack": "^5.22.0",
"webpack-cli": "*"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"csv2json": "2.0.2",
"electron": "11.2.3",
"electron-builder": "22.10.4",
"eslint": "7.20.0",
"eslint-config-standard": "16.0.2",
"eslint-config-standard-react": "11.0.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-standard": "4.1.0",
"husky": "5.0.9",
"lint-staged": ">=10",
"prettier": "2.2.1"
},
"dependencies": {
"@react-spring/parallax": "9.0.0-rc.3",
"activity-detector": "3.0.0",
"dotenv": "8.2.0",
"electron-is-dev": "1.2.0",
"electron-next": "3.1.5",
"file-loader": "6.2.0",
"firebase": "8.2.7",
"image-trace-loader": "1.0.2",
"imagemin-mozjpeg": "9.0.0",
"imagemin-optipng": "8.0.0",
"imagemin-svgo": "8.0.0",
"jimp": "0.16.1",
"lodash": "4.17.21",
"next": "10.0.7",
"next-compose-plugins": "2.2.1",
"next-optimized-images": "2.5.8",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-image-gallery": "1.0.8",
"react-intersection-observer": "8.31.0",
"react-markdown": "5.0.3",
"react-spring": "8.0.27",
"responsive-loader": "2.3.0",
"webp-loader": "0.6.0",
"webpack": "5.22.0"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,scss,css,md}": [
"prettier --write"
]
}
}