-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "dndice",
"version": "0.0.0",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"pretest": "tslint src/**/*.{ts,tsx}",
"test": "mocha",
"build": "webpack --config webpack/prod.config.js",
"watch": "webpack --watch --config webpack/dev.config.js",
"start": "webpack-dev-server --config webpack/dev.config.js",
"clean": "rm -rf dist",
"deploy": "npm run clean && npm run build && gh-pages -d dist"
},
"author": "David García Miguel <[email protected]>",
"devDependencies": {
"@types/lodash": "^4.14.116",
"@types/node": "^10.9.4",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"css-loader": "^1.0.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.2",
"mocha": "^5.2.0",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"chart.js": "^2.7.2",
"chevrotain": "^3.7.4",
"color": "^3.0.0",
"lodash": "^4.17.10",
"preact-chartjs-2": "^1.0.3",
"preact": "^8.3.1",
"tslib": "^1.9.3"
}
}