-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 841 Bytes
/
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
{
"name": "ps1-emulator",
"version": "0.0.1",
"description": "Playstation 1 emulator using JavaScript",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"test": "jest",
"lint": "eslit .",
"lint:fix": "eslint --fix .",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "~7.17.9",
"@babel/preset-env": "~7.16.11",
"babel": "~6.23.0",
"babel-jest": "~28.0.2",
"babel-loader": "~8.2.5",
"copy-webpack-plugin": "~10.2.4",
"cross-env": "~7.0.3",
"eslint": "~8.14.0",
"eslint-plugin-jest": "~26.1.5",
"husky": "~7.0.4",
"jest": "~28.0.1",
"jest-cli": "~28.0.1",
"jest-environment-jsdom": "~28.0.2",
"webpack": "~5.72.0",
"webpack-cli": "~4.9.2",
"webpack-dev-server": "~4.8.1"
}
}