-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.69 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
{
"name": "Whiteboard Online Toole",
"version": "1.0.0",
"description": "A lightweight tool for sketching, drawing and painting",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=development webpack-dev-server --host 0.0.0.0 --open -r dotenv/config",
"build": "NODE_ENV=production webpack -r dotenv/config",
"prittier": "prettier --single-quote --trailing-comma es5 --write \"{app,__{tests,mocks}__}/**/*.js\""
},
"keywords": [
"webpack",
"static"
],
"author": "Allan Esquina",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"file-loader": "^1.1.11",
"html-critical-webpack-plugin": "^2.1.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.2.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"optimize-css-assets-webpack-plugin": "^4.0.1",
"prettier": "1.15.3",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.0.1",
"script-ext-html-webpack-plugin": "^2.0.1",
"style-loader": "^0.21.0",
"svg-url-loader": "^2.3.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-s3-plugin": "^1.0.0-rc.0"
},
"dependencies": {
"copy-webpack-plugin": "^4.6.0",
"jquery": "^3.3.1",
"raw-loader": "^1.0.0"
}
}