-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "reveal-js-testing",
"version": "1.0.0",
"description": "Testing the reveal JS framework",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm dist/bundle.js",
"build-dev": "webpack --mode development",
"build-prod": "webpack --mode production",
"start": "webpack serve --open",
"pretty-quick": "pretty-quick",
"deploy": "npm run build-prod && gh-pages -d dist"
},
"author": "",
"license": "ISC",
"dependencies": {
"@arcgis/core": "^4.20.2",
"reveal.js": "^4.1.3"
},
"devDependencies": {
"@types/arcgis-js-api": "^4.20.1",
"@types/reveal": "^4.1.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"gh-pages": "^3.2.3",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"ncp": "^2.0.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"style-loader": "^3.2.1",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.0"
},
"browser": {
"fs": false,
"path": false
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}