-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.14 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
{
"name": "ric-rac-rogue",
"version": "1.0.0",
"description": "7 Day Roguelike based on Tic Tac Toe",
"main": "index.js",
"scripts": {
"prebuild": "mkdir -p dist/assets && cp -r src/assets/ dist/assets/",
"build": "webpack --config ./webpack.config.js --mode production",
"start:stable-ui": "NODE_ENV=production webpack-dev-server --config ./webpack.config.js --mode development",
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"test": "jest src/* --testPathIgnorePatterns=perf",
"test:performance": "jest -u --runInBand src/perf",
"lint": "npm run lint:base -- --fix",
"lint:ci": "npm run lint:base",
"lint:base": "eslint --ext js,ts src"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/katerberg/ric-rac-rogue.git"
},
"keywords": [
"7drl"
],
"author": "katerberg@fastmail.fm",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/katerberg/ric-rac-rogue/issues"
},
"homepage": "https://github.com/katerberg/ric-rac-rogue#readme",
"devDependencies": {
"@types/howler": "^2.2.11",
"@types/jest": "^29.5.11",
"@types/p5": "^1.7.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@webpack-cli/generators": "^3.0.7",
"autoprefixer": "^10.4.17",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.9.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.7.7",
"postcss-loader": "^8.0.0",
"sass": "^1.70.0",
"sass-loader": "^14.0.0",
"style-loader": "^3.3.4",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"howler": "^2.2.4",
"p5": "^1.9.1"
}
}