-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.49 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "community-text-adventure",
"version": "1.17.2",
"description": "Text adventure made by the community.",
"dependencies": {
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"grapheme-splitter": "^1.0.4",
"mobile-detect": "^1.4.3",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-hot-loader": "^4.6.3",
"web-text-adventure": "^1.10.5"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"autoprefixer": "^9.4.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-webpack-alias": "^2.1.2",
"chalk": "^2.4.2",
"css-loader": "^2.1.0",
"cssnano": "^4.1.8",
"eslint": "^5.12.0",
"eslint-plugin-react": "^7.12.3",
"fs-extra": "^7.0.1",
"html-minifier": "^3.5.21",
"html-webpack-plugin": "^3.2.0",
"loader-utils": "^1.2.3",
"mocha": "^5.2.0",
"mocha-eslint": "^5.0.0",
"mockery": "^2.1.0",
"module-alias": "^2.1.0",
"postcss": "^7.0.7",
"postcss-loader": "^3.0.0",
"raw-loader": "^1.0.0",
"run-script-os": "^1.0.5",
"style-loader": "^0.23.1",
"true": "0.0.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14"
},
"optionalDependencies": {
"electron": "^4.0.4",
"electron-zip-packager": "^4.0.2"
},
"scripts": {
"start": "webpack-dev-server",
"build": "node src/build/build.js",
"lint": "eslint . --ext .js,.jsx --ignore-path .eslintignore || true",
"lint-fix": "eslint . --ext .js,.jsx --ignore-path .eslintignore --fix || true",
"test": "mocha",
"cloc": "cloc scenes/ src/ templates/ res/",
"gource": "run-script-os",
"gource:win32": "make-gource-mp4.bat",
"gource:linux": "./make-gource-mp4.sh",
"package": "electron-zip-packager dist --out=build --electronVersion=4.0.4",
"package-all": "run-script-os",
"package-all:darwin": "npm run package -- --platform=linux,win32,darwin --arch=ia32,x64",
"package-all:win32:linux": "npm run package -- --arch=ia32,x64 --platform=linux,win32",
"build-package": "npm run build && npm run electron",
"build-all": "npm run build && npm run package-all"
},
"license": "MIT",
"output_directory": "dist",
"private": true,
"_moduleAliases": {
"@templates": "templates",
"@src": "src/js",
"@css": "src/css",
"@scenes": "scenes",
"@res": "res"
}
}