forked from Supernova-Studio/exporter-documentation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "sn-export-compile",
"version": "1.0.0",
"description": "JS Exporter Compiler",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch:dev": "npx webpack --mode=development --watch",
"watch": "npx webpack --mode=production --watch",
"build": "npx webpack --config webpack.config.js --mode='production'"
},
"author": "Supernova.io",
"license": "MIT",
"dependencies": {
"get-contrast": "^3.0.0",
"semver-sort": "^1.0.0",
"short-hash": "^1.0.0",
"showdown": "^2.1.0"
},
"devDependencies": {
"@types/showdown": "^2.0.0",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.6.1",
"prettier-stylelint": "^0.4.2",
"sass": "1.75.0",
"sass-loader": "^13.3.0",
"stylelint": "^14.9.1",
"stylelint-config-sass-guidelines": "^9.0.1",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}