-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.45 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
{
"name": "creature-builder",
"version": "0.8.5",
"description": "Creature builder built for the No Man's Sky Hub built by AssistantNMS",
"author": "AssistantNMS (Kurt Lourens)",
"main": "public/electron.js",
"private": true,
"scripts": {
"start": "react-scripts start",
"test": "jest",
"seo": "npm-run-all --sequential seo:*",
"seo:init": "node seo/node/getGeneratedProjectJson.js",
"seo:meta": "webpack --progress --profile --mode production",
"seo:minify": "node seo/node/minifyPublicFiles.js",
"build": "npm-run-all --sequential build:*",
"build:bundle": "react-scripts build",
"electron:dev": "concurrently -k \"npm start\" \"npm run electron:local\"",
"electron:local": "wait-on tcp:3000 && electron .",
"electron:pack": "electron-builder --dir --publish=never",
"electron:dist": "electron-builder --publish=never",
"prod": "npm-run-all --sequential seo:* build:*"
},
"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
},
"dependencies": {
"@assistantapps/assistantapps.api.client": "^0.0.18",
"@chakra-ui/icons": "^2.0.0",
"@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@microsoft/signalr": "^6.0.5",
"assert": "^2.0.0",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1",
"dotenv": "^16.3.1",
"electron-is-dev": "^2.0.0",
"framer-motion": "^10.15.0",
"fs": "0.0.1-security",
"https-browserify": "^1.0.0",
"moment": "^2.29.4",
"os": "^0.1.2",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-medium-image-zoom": "^4.4.3",
"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.64.2",
"stats.js": "^0.17.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"sweetalert2": "^11.4.17",
"three": "^0.155.0",
"typescript": "^4.6.4",
"web-vitals": "^2.1.4",
"wouter": "^2.8.0-alpha.2"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@jest/globals": "^29.6.2",
"@npmcli/move-file": "^2.0.0",
"@types/crypto-js": "^4.1.1",
"@types/cryptr": "^4.0.1",
"@types/jest": "^27.5.1",
"@types/node": "^16.11.36",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/react-syntax-highlighter": "^15.5.1",
"@types/three": "^0.154.0",
"concurrently": "^7.2.0",
"electron": "^18.2.4",
"electron-builder": "^23.0.3",
"handlebars-webpack-plugin": "^2.2.1",
"minify": "^7.2.2",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.1.1",
"wait-on": "^6.0.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}