-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.8 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "editor",
"version": "1.0.0",
"description": "Editor completely made in Vanillajs. We are using plugin architecture.",
"main": "src/index.js",
"scripts": {
"start:watch": "./node_modules/.bin/webpack --watch",
"build": "NODE_ENV=production webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shredx/editor-vanillsjs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shredx/editor-vanillsjs/issues"
},
"homepage": "https://github.com/shredx/editor-vanillsjs#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.0.0-beta.51",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0-beta.51",
"@babel/polyfill": "^7.0.0-beta.52",
"@babel/preset-env": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0-beta.51",
"@babel/register": "^7.4.4",
"autoprefixer": "^6.7.7",
"babel-loader": "^8.0.0",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^1.2.0",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"css-loader": "^0.26.1",
"css-mqpacker": "^6.0.1",
"eslint": "3.19.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^3.2.0",
"iconfont-webpack-plugin": "^3.1.0",
"json-loader": "^0.5.7",
"loader": "^2.1.1",
"node-sass": "^4.7.2",
"postcss": "^5.2.6",
"prettier": "^1.10.2",
"pug-html-loader": "^1.1.5",
"raw-loader": "^0.5.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.20.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"svg-inline-loader": "^0.8.0",
"sw-precache-webpack-plugin": "^0.11.5",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.0-beta.0",
"webpack": "^4.28.4",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.5.1"
}
}