-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "text-game",
"version": "1.0.0",
"description": "",
"private": true,
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack/webpack-prod.config.js ",
"start": "webpack-dev-server --host localhost --port 3000 --config webpack/webpack-dev.config.js --open"
},
"author": "",
"license": "MIT",
"dependencies": {
"events": "~3.0.0",
"fastpriorityqueue": "~0.6.3",
"gl-matrix": "~3.1.0",
"howler": "~2.1.2",
"inquirer": "~7.0.0",
"keycode": "~2.2.0",
"play-sound": "~1.1.3",
"readline-sync": "~1.4.10",
"recursive-readdir": "~2.2.2",
"sorted-array": "~2.0.4",
"soundjs": "~1.0.1",
"terminal-kit": "~1.31.3",
"tty": "~1.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "~7.5.5",
"@babel/preset-env": "^7.2.3",
"@types/gl-matrix": "^2.4.5",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^5.2.0",
"raw-loader": "^1.0.0",
"source-map-loader": "^1.0.1",
"terser-webpack-plugin": "^1.2.1",
"ts-loader": "^8.0.0",
"typescript": "^3.9.6",
"typescript-loader": "^1.1.3",
"webpack": "^5.24.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^4.2.1"
}
}