-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "enedi",
"version": "0.6.0",
"private": true,
"description": "Recreation of the Royal Game of Ur",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --config build/webpack.config.js",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.config.js",
"deploy": "npm run build && sh build/deploy-github-pages.sh",
"lint": "eslint src/*.js",
"test": "jest",
"bump-version": "npm --no-git-tag-version version "
},
"repository": {
"type": "git",
"url": "git+https://github.com/lenzls/enedi.git"
},
"author": "Simon Lenz",
"license": "ISC",
"bugs": {
"url": "https://github.com/lenzls/enedi/issues"
},
"homepage": "https://github.com/lenzls/enedi#readme",
"dependencies": {
"pixi-sound": "^3.0.4",
"pixi.js": "^5.2.3"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-jest": "^25.5.1",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.0",
"jest": "^25.5.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}