-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 1.99 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
80
81
82
83
84
85
{
"name": "supertasball",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "nyc mocha ./src/**/*.spec.ts",
"ts-check": "tsc --noEmit",
"start": "node fuse",
"deploy": "ansible-playbook ./playbook/playbook.yml",
"set-version": "node dump-version.js > src/version.ts",
"precommit": "lint-staged && npm test"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"lcov"
]
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --trailing-comma all --write",
"git add"
]
},
"author": "",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"clonable-planck-js": "^0.1.44",
"clone": "^2.1.1",
"jsxm": "^1.0.0",
"pixi-pause": "^1.0.3",
"pixi.js": "^4.7.3",
"polished": "^1.9.2",
"react": "^16.3.2",
"react-contextmenu": "^2.9.2",
"react-dom": "^16.3.2",
"react-dropzone": "^4.2.9",
"react-hint": "^3.0.1",
"react-redux": "^5.0.7",
"react-timeago": "^4.1.9",
"redux": "^4.0.0",
"styled-components": "^3.2.6",
"svg-path-parser": "^1.1.0",
"tinycolor2": "^1.4.1",
"underscore": "^1.9.0"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/chai-as-promised": "^7.1.0",
"@types/classnames": "^2.2.3",
"@types/mocha": "^5.2.0",
"@types/node": "^9.6.6",
"@types/pixi.js": "^4.7.3",
"@types/react": "^16.3.12",
"@types/react-redux": "^5.0.16",
"@types/redux": "^3.6.0",
"@types/underscore": "^1.8.8",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.1.4",
"fuse-box": "^3.2.2",
"husky": "^0.14.3",
"lint-staged": "^7.0.5",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"prettier": "^1.12.1",
"ts-node": "^6.0.1",
"typescript": "^2.8.3",
"uglify-es": "^3.3.9",
"xmldom-qsa": "^1.0.3"
}
}