-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 1.03 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
{
"name": "mandarin-mojo",
"version": "1.0.0",
"description": "A web based game to help you practice your Mandarin skills",
"main": "index.html",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"build": "tsc && tslint --project '.' && webpack --config webpack.config.js",
"prebuild": "cp index.html ./dist/index.html && cp game.html ./dist/game.html && cp style.css ./dist/style.css",
"start": "webpack-dev-server --mode development --config webpack.config.js",
"test": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andyjdavis/MandarinMojo.git"
},
"author": "Andrew",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/andyjdavis/MandarinMojo/issues"
},
"homepage": "https://github.com/andyjdavis/MandarinMojo#readme",
"devDependencies": {
"file-loader": "^2.0.0",
"ts-loader": "^4.4.2",
"tslint": "^5.10.0",
"typescript": "^2.9.2",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}