-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.34 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
{
"name": "vanillabetter",
"version": "0.0.1",
"description": "Vanilla always better",
"main": "index.js",
"scripts": {
"build:lodashfp": "webpack --env.FOLDER=data_process --config webpack.config.js --progress --display-error-details --color --env.FILE=lodashfp ",
"build:lodash": "webpack --env.FOLDER=data_process --config webpack.config.js --progress --display-error-details --color --env.FILE=lodash ",
"build:ramda": "webpack --env.FOLDER=data_process --config webpack.config.js --progress --display-error-details --color --env.FILE=ramda ",
"build:es6": "webpack --env.FOLDER=data_process --config webpack.config.js --progress --display-error-details --color --env.FILE=es6 ",
"build": "npm run build:es6 && npm run build:ramda && npm run build:lodash && npm run build:lodashfp"
},
"author": {
"name": "William Penagos",
"email": "[email protected]",
"url": "https://williampenagos.com"
},
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"clean-webpack-plugin": "^0.1.17",
"cross-env": "^5.1.1",
"eslint-loader": "^1.9.0",
"extract-text-webpack-plugin": "^3.0.2",
"uglifyjs-webpack-plugin": "^1.1.1",
"webpack": "^3.8.1",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"lodash": "^4.17.13",
"ramda": "^0.25.0"
}
}