forked from reverietracker/chromatic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.65 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.65 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
{
"name": "somatic",
"version": "1.0.0",
"description": "a playground for creating samples for TIC-80 music",
"main": "src/index.tsx",
"scripts": {
"build-bridge": "ts-node --transpile-only --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\" scripts/build-bridge.ts",
"build": "webpack --mode production",
"deploy-prod": "node ./scripts/deploy-prod.mjs",
"watch": "webpack --watch",
"start": "webpack serve --open",
"typecheck": "tsc --noEmit",
"test": "node --import tsx scripts/run-tests.ts"
},
"author": "Matt Westcott",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/plugin-transform-react-jsx-development": "^7.22.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/events": "^3.0.3",
"@types/luaparse": "^0.2.13",
"@types/node": "^20.11.24",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.18",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"dotenv": "^17.2.3",
"html-webpack-plugin": "^5.5.0",
"luaparse": "^0.3.1",
"mini-css-extract-plugin": "^2.7.2",
"raw-loader": "^4.0.2",
"ssh2-sftp-client": "^12.0.1",
"style-loader": "^4.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.3.3",
"webpack": "^5.76.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"events": "^3.3.0",
"file-dialog": "^0.0.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"save-file": "^2.3.1"
}
}