-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "tsnes",
"version": "1.0.0",
"description": "A NES emulator written in TypeScript",
"main": "index.js",
"scripts": {
"test": "jest --maxWorkers=1",
"test-watch": "jest --watchAll",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve",
"typecheck": "tsc --noEmit"
},
"author": "Niklas Gschaider <[email protected]>",
"license": "All rights reserved.",
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/p5": "^1.4.2",
"@webpack-cli/generators": "^2.4.2",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.2",
"ts-loader": "^9.3.0",
"typescript": "^4.6.3",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"dependencies": {
"p5": "^1.4.1"
}
}