-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
44 lines (44 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
{
"name": "phelia",
"version": "0.1.11",
"main": "dist/index.js",
"license": "MIT",
"repository": "https://github.com/maxchehab/phelia",
"devDependencies": {
"@types/express": "^4.17.4",
"@types/jest": "^25.2.1",
"@types/node": "12.7.0",
"@types/react": "^16.9.32",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-plugin-jsdoc": "^23.0.0",
"jest": "^25.2.7",
"rimraf": "^3.0.2",
"ts-jest": "^25.3.1",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@slack/events-api": "^2.3.2",
"@slack/interactive-messages": "^1.5.0",
"@slack/web-api": "^5.8.0",
"@types/react-dom": "^16.9.6",
"@types/react-reconciler": "^0.18.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-reconciler": "^0.25.1",
"ts-xor": "^1.0.8"
},
"scripts": {
"test": "jest",
"lint": "eslint src --ext ts --ext tsx",
"build": "tsc",
"clean": "yarn rimraf dist",
"prestart": "yarn build",
"prepublish": "yarn lint && yarn test && yarn clean && yarn build --project prod.tsconfig.json",
"start": "node dist/example/server.js"
}
}