-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.64 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.64 KB
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
{
"name": "boardhousets",
"version": "1.0.0",
"description": "Game framework / scaffolding written in TypeScript to rapidly develop prototypes.",
"private": true,
"scripts": {
"test": "jest tests",
"start": "webpack-dev-server --open --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjwall/BoardhouseTS.git"
},
"keywords": [
"Game",
"Framework",
"Scaffolding"
],
"author": "Jacob Wallace",
"license": "MIT",
"bugs": {
"url": "https://github.com/jjwall/BoardhouseTS/issues"
},
"homepage": "https://github.com/jjwall/BoardhouseTS#readme",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/node": "^10.17.28",
"acorn": "^6.4.1",
"babel-loader": "^8.1.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"copy-webpack-plugin": "^6.0.3",
"ts-loader": "^5.4.5",
"typescript": "^3.9.7",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"jest": {
"setupFiles": [
"jest-canvas-mock"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true
},
"dependencies": {
"express": "^4.17.1",
"http": "0.0.0",
"path": "^0.12.7",
"three": "^0.119.1"
}
}