-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.05 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
{
"name": "writingboots",
"version": "0.1.0",
"description": "Tools to analyze the readability of your writing and share it with others.",
"repository": "https://github.com/stephenburgess8/writing-boots",
"keywords": [
"writing",
"readability",
"text"
],
"author": "Stephen Burgess [[email protected]]",
"license": "ISC",
"scripts": {
"dev": "npm run development",
"development": "node_modules/.bin/webpack-cli --mode development",
"prod": "npm run production",
"production": "node_modules/.bin/webpack-cli --mode production"
},
"devDependencies": {
"css-loader": "^1.0.1",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.13.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^7.3.1",
"style-loader": "^0.21.0",
"url-loader": "^1.1.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}