-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.29 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
{
"name": "dropbox-api-v2-explorer",
"private": true,
"scripts": {
"build": "gulp",
"watch": "gulp watch",
"lint": "eslint --ext .js,.jsx,.ts src/ test/",
"lint-fix": "eslint --fix --ext .js,.jsx,.ts src/ test/",
"test:unit": "mocha -r ts-node/register test/unit/*.test.ts",
"coverage:unit": "nyc --reporter=lcov npm run test:unit",
"report": "nyc report --reporter=lcov --reporter=text"
},
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/highlight.js": "^10.1.0",
"@types/mocha": "^8.2.0",
"@types/react": "^17.0.3",
"@types/react-dom": "*",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.6.1",
"browserify": "^17.0.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"chai": "^4.3.0",
"gulp": "^4.0.2",
"gulp-connect": "^5.7.0",
"gulp-sourcemaps": "^3.0.0",
"highlight.js": "^10.6.0",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-node": "^9.1.1",
"tsify": "^5.0.2",
"typescript": "^4.2.4",
"vinyl": "^2.2.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}