-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "alchemancy",
"version": "1.5.1",
"description": "Alchemancy Mark III - Wonder Unit's drawing system",
"main": "./dist/sketch-pane.common.js",
"files": [
"dist/sketch-pane.common.js",
"src/"
],
"scripts": {
"clean": "trash dist/*",
"watch": "cross-env MODE=development webpack --watch",
"start": "cross-env MODE=development webpack-serve --config webpack.config.js --port 8000 --host 0.0.0.0 --no-hot --no-clipboard",
"build": "cross-env MODE=production webpack",
"build:dev": "cross-env MODE=development webpack",
"test": "standardx **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wonderunit/alchemancy.git"
},
"author": "",
"private": true,
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/wonderunit/alchemancy/issues"
},
"homepage": "https://github.com/wonderunit/alchemancy#readme",
"standardx": {
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
]
},
"devDependencies": {
"@types/node": "10.5.0",
"@types/paper": "^0.9.15",
"@types/pixi.js": "4.8.6",
"cross-env": "5.1.5",
"eslint": "4.19.1",
"eslint-plugin-typescript": "0.12.0",
"shader-loader": "1.3.1",
"standardx": "2.0.0",
"trash-cli": "1.4.0",
"ts-loader": "4.4.1",
"typescript": "2.9.2",
"typescript-eslint-parser": "15.0.0",
"webpack": "^4.13.0",
"webpack-cli": "^3.0.8",
"webpack-serve": "^1.0.0"
},
"dependencies": {
"paper": "0.11.5",
"pixi.js": "4.8.7"
}
}