-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
60 lines (60 loc) · 1.76 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
{
"name": "trello-habitica",
"repository": "https://github.com/alexktzk/trello-habitica",
"description": "Trello Power-Up for Habitica.",
"version": "1.1.1",
"main": "webpack.config.dev.js",
"scripts": {
"test": "jest",
"clean-dist": "rimraf dist",
"copy-files": "cpy src/*.html dist && cpy src/changelog dist/changelog",
"watch": "webpack --watch",
"build": "webpack --config webpack.config.prod.js",
"prestart": "npm run clean-dist && npm run copy-files",
"start": "webpack --config webpack.config.dev.js && webpack-dev-server --config webpack.config.dev.js",
"publish": "push-dir --dir=dist --branch=gh-pages --cleanup",
"deploy": "npm run build && npm run publish && npm run clean-dist"
},
"dependencies": {
"compression": "^1.7.1",
"cors": "^2.8.4",
"express": "^4.16.2",
"node-nocache": "^1.0.4"
},
"engines": {
"node": "9.x"
},
"keywords": [
"habitica",
"habitrpg",
"trello",
"power-up",
"integration"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^26.3.0",
"babel-loader": "^8.0.5",
"cpy-cli": "^3.1.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.1.0",
"fetch-mock": "^7.3.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.4.2",
"node-fetch": "^2.6.1",
"push-dir": "^0.4.1",
"rimraf": "^2.6.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}