-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 3.32 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
{
"name": "zedide",
"version": "0.2.0",
"description": "an ide for writing, running and debugging z80 asm on the web",
"main": "index.js",
"type": "module",
"scripts": {
"build": "NODE_ENV=production webpack",
"start": "NODE_ENV=production node ./bin/www.js",
"build:dev": "NODE_ENV=development webpack",
"start:dev-fe": "NODE_ENV=development webpack serve",
"start:dev-be": "NODE_ENV=development nodemon ./bin/www.js",
"generate:opcodes": "rm -fv z80_tables/build/*.js && npm run-script opcodes:base && npm run-script opcodes:cb && npm run-script opcodes:dd && npm run-script opcodes:ed && npm run-script opcodes:errata_ed && npm run-script opcodes:fd && npm run-script opcodes:ddcb && npm run-script opcodes:fdcb && npm run-script opcodes:combine",
"opcodes:base": "z80_tables/translate_z80_tables.js z80_tables/opcodes_base.dat z80_tables/build/00_opcodes_base.js",
"opcodes:cb": "z80_tables/translate_z80_tables.js z80_tables/opcodes_cb.dat z80_tables/build/01_opcodes_cb.js cb",
"opcodes:dd": "z80_tables/translate_z80_tables.js z80_tables/opcodes_ddfd.dat z80_tables/build/02_opcodes_dd.js dd ix",
"opcodes:ed": "z80_tables/translate_z80_tables.js z80_tables/opcodes_ed.dat z80_tables/build/03_opcodes_ed.js ed",
"opcodes:errata_ed": "z80_tables/translate_z80_tables.js z80_tables/errata_ed.dat z80_tables/build/04_errata_ed.js ed",
"opcodes:fd": "z80_tables/translate_z80_tables.js z80_tables/opcodes_ddfd.dat z80_tables/build/05_opcodes_fd.js fd iy",
"opcodes:ddcb": "z80_tables/translate_z80_tables.js z80_tables/opcodes_ddfdcb.dat z80_tables/build/06_opcodes_ddcb.js ddcb ix",
"opcodes:fdcb": "z80_tables/translate_z80_tables.js z80_tables/opcodes_ddfdcb.dat z80_tables/build/07_opcodes_fdcb.js fdcb iy",
"opcodes:combine": "ls z80_tables/build/[0-9]* | sort | xargs cat > z80_tables/build/opcodes.js",
"opcodes:splice": "sed -i.unindented.js 's/^/ /g;s/^ *$//g' z80_tables/build/opcodes.js && z80_tables/inject_file.js src/frontend/cpu/z80.js z80_tables/build/opcodes.js '// START: this block is AUTOMATICALLY GENERATED SEE /z80_tables/*' '// END: this block is AUTOMATICALLY GENERATED SEE /z80_tables/*'",
"test": "node --experimental-vm-modules node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "github.com:borb/zedide.git"
},
"author": "rob andrews <[email protected]>",
"license": "CC-BY-SA-4.0",
"engines": {
"node": ">=12.12.0"
},
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@forevolve/bootstrap-dark": "^1.0.0-alpha.1091",
"@justnine/asm80": "^1.11.14-borb4",
"angular": "^1.8.2",
"angular-sanitize": "^1.8.2",
"babel-loader": "^8.1.0",
"bcrypt": "^5.0.0",
"bootstrap": "^4.5.3",
"codemirror": "^5.58.2",
"cookie-parser": "^1.4.5",
"css-loader": "^4.3.0",
"debug": "^4.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"http-errors": "^1.8.0",
"jquery": "^3.5.1",
"mongoose": "^5.10.13",
"morgan": "^1.10.0",
"nrf-intel-hex": "^1.3.0",
"popper.js": "^1.16.1",
"style-loader": "^1.3.0",
"terser-webpack-plugin": "^5.0.3",
"uuid": "^8.3.1",
"webpack": "^5.3.2",
"webpack-cli": "^4.1.0"
},
"devDependencies": {
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"webpack-dev-server": "^3.11.0"
}
}