-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.29 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.29 KB
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
{
"name": "quick-notes",
"version": "1.0.0",
"description": "Quick HTML notes",
"main": "docs/main.js",
"author": "OnikurYH <onikuryh@gmail.com>",
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/html-webpack-plugin": "^3.2.1",
"@types/mini-css-extract-plugin": "^0.8.0",
"@types/node": "^12.6.9",
"@types/webpack": "^4.32.1",
"@types/webpack-dev-server": "^3.1.7",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.0",
"css-loader": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"mini-css-extract-plugin": "^0.8.0",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"typescript": "^3.5.3",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"scripts": {
"build": "cross-env TS_NODE_PROJECT=\"build/tsconfig-for-webpack-config.json\" NODE_ENV=\"production\" webpack --config build/webpack.config.ts",
"dev": "cross-env TS_NODE_PROJECT=\"build/tsconfig-for-webpack-config.json\" NODE_ENV=\"production\" webpack-dev-server --config build/webpack.config.ts",
"start": "http-server ./docs"
},
"dependencies": {
"regenerator-runtime": "^0.13.3"
}
}