-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.71 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
{
"name": "creature-builder",
"version": "0.1.11",
"description": "Creature builder built for the No Man's Sky Hub built by AssistantNMS",
"author": "AssistantNMS (Kurt Lourens)",
"main": "public/electron.js",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^2.0.0",
"@chakra-ui/react": "^2.0.2",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.12.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.1",
"@types/node": "^16.11.36",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"assert": "^2.0.0",
"axios": "^0.27.2",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1",
"electron-is-dev": "^2.0.0",
"framer-motion": "^6.3.3",
"fs": "0.0.1-security",
"https-browserify": "^1.0.0",
"moment": "^2.29.3",
"os": "^0.1.2",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-google-login": "^5.2.2",
"react-modal": "^3.15.1",
"react-modal-sheet": "^1.5.1",
"react-scripts": "^5.0.1",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^9.0.1",
"sass": "^1.52.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"sweetalert2": "^11.4.17",
"typescript": "^4.6.4",
"web-vitals": "^2.1.4",
"wouter": "^2.8.0-alpha.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"dev": "concurrently -k \"npm start\" \"npm:electron\"",
"electron": "wait-on tcp:3000 && electron .",
"pack": "electron-builder --dir --publish=never",
"dist": "electron-builder --publish=never"
},
"build": {
"appId": "com.assistantapps.nms.creaturebuilder",
"productName": "Creature Builder",
"win": {
"asar": false,
"target": "nsis",
"icon": "build/assets/favicon/android-chrome-512x512.png"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"browser": {
"crypto": false,
"fs": false,
"path": false,
"os": false,
"net": false,
"stream": false,
"tls": false
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/cryptr": "^4.0.1",
"@types/react-syntax-highlighter": "^15.5.1",
"concurrently": "^7.2.0",
"electron": "^18.2.4",
"electron-builder": "^23.0.3",
"wait-on": "^6.0.1"
}
}