-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 924 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
34
35
{
"name": "sokoban",
"version": "1.0.0",
"description": "Zadanie II etapu konkursu Motorola Science Cup 2020/21",
"main": "index.js",
"author": "bk20dev <60577942+bk20dev@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "webpack --mode=production",
"dev": "webpack --watch"
},
"devDependencies": {
"@types/uuid": "^8.3.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.1.1",
"file-loader": "^6.2.0",
"jest": "^26.6.3",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"typescript": "^4.2.2",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"uuid": "^8.3.2"
}
}