-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.64 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "notepad",
"version": "1.0.0",
"description": "",
"main": "gulpfile.js",
"scripts": {
"test": "jest",
"dev": "webpack-dev-server --mode development --colors --progress",
"build": "rimraf dist && webpack --mode production --colors --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moustru/notepad.git"
},
"author": "moustru",
"license": "ISC",
"bugs": {
"url": "https://github.com/moustru/notepad/issues"
},
"homepage": "https://github.com/moustru/notepad#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"autoprefixer": "^9.6.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.12.0",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"rimraf": "^2.7.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"ts-loader": "^5.4.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue-loader": "^15.7.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack-dev-server": "^3.8.0",
"yargs": "^13.3.0"
},
"dependencies": {
"vue": "^2.6.10",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
}
}