forked from mondaycom/monday-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "monday-sdk-js",
"version": "0.5.3",
"private": false,
"repository": "https://github.com/mondaycom/monday-sdk-js",
"main": "src/index.js",
"types": "types/index.d.ts",
"author": "talharamati <[email protected]>",
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"dist/",
"src/",
"types/",
"server-sdk.js"
],
"dependencies": {
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.6.0",
"@types/source-map": "^0.5.2",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"jsdom": "^16.2.0",
"mocha": "^7.1.0",
"prettier": "^1.19.1",
"sinon": "^9.0.0",
"sinon-chai": "^3.5.0",
"typescript": "^4.9.5",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --mode=production --env.WEBPACK_BUILD=true",
"test": "mocha './src/**/*-test.js'",
"test:watch": "mocha './src/**/*-test.js' --watch",
"precommit": "yarn lint && yarn style-check",
"lint": "eslint './src/**/*.*'",
"style-check": "prettier --check './src/**/*.js'",
"style-fix": "prettier --write './src/**/*.js'",
"compile-types": "tsc --noEmit"
}
}