-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 914 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": "pixel-editor",
"version": "0.0.0",
"description": "WebGL application for editing low-resolution images.",
"main": "index.js",
"scripts": {
"start": "npx webpack-dev-server --config ./webpack.config.js",
"build": "npx webpack --config ./webpack.config.js",
"serve": "npx serve dist",
"test": "npx jest --config jest.config.js --watchAll"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"gl-matrix": "^3.3.0",
"prettier": "^2.4.1",
"redux": "^4.1.1"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"serve": "^12.0.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
}
}