-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 804 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 804 Bytes
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
{
"name": "MineSweeper",
"version": "1.0.0",
"description": "A mineSweeper game",
"scripts": {
"test": "jest",
"start": "npm run clean && parcel src/index.html",
"build": "npm run clean && parcel build src/index.html --public-url ./",
"build_serve": "npm run build && http-server ./dist",
"clean": "rimraf ./dist ./.cache"
},
"author": "Tyler Long",
"license": "MIT",
"dependencies": {
"caniuse-lite": "^1.0.30001022",
"howler": "^2.1.3",
"pixi-particles": "^4.2.0",
"pixi.js": "^5.2.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"babel-preset-es2015": "^6.24.1",
"http-server": "0.11.1",
"jest": "~24.9.0",
"parcel-bundler": "^1.12.5",
"rimraf": "^2.6.2",
"ts-jest": "^24.2.0",
"typescript": "^3.7.5"
}
}