forked from donmccurdy/msdf-bmfont-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "msdf-bmfont-web",
"version": "1.0.12",
"description": "Web tool for creation of MSDF bitmap font spritesheets and JSON",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production npm run build && node server.js",
"build": "browserify -g envify client/index.js -o public/bundle.js",
"dev": "concurrently \"nodemon server.js\" \"watchify client/index.js -o public/bundle.js\"",
"clean": "rm -rf data/tasks/task-*",
"deploy": "now --docker && now alias"
},
"author": "Don McCurdy <[email protected]>",
"license": "MIT",
"repository": "donmccurdy/msdf-bmfont-web",
"dependencies": {
"browserify": "^16.0.0",
"envify": "^4.1.0",
"express": "^4.16.2",
"file-saver": "^1.3.3",
"fs-extra": "^5.0.0",
"jszip": "^3.1.5",
"msdf-bmfont-xml": "^2.3.4",
"multer": "^1.3.0",
"three": "^0.89.0",
"three-bmfont-text": "^2.2.1",
"uglify-es": "^3.3.10",
"vue": "^2.5.13"
},
"devDependencies": {
"concurrently": "^3.5.1",
"nodemon": "^1.14.11",
"watchify": "^3.10.0"
},
"nodemonConfig": {
"ignore": [
"data/*",
"fonts/*",
"public/*",
"client/*"
]
},
"now": {
"alias": "msdf-bmfont.donmccurdy.com",
"public": true
}
}