-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 921 Bytes
/
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
{
"name": "Dinosaurs",
"description": "JavaScript package definition",
"main": "node-form.js",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"es6-promise": "^4.2.5",
"lodash": "^4.17.10",
"webpack-cli": "^3.0",
"babel-polyfill": "^6.26.0",
"@babel/core": "^7.1.2",
"@babel/plugin-transform-arrow-functions": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"webpack": "^4.20.2"
},
"scripts": {
"build": "webpack --config webpack.js --mode production",
"build-dev": "webpack --config webpack.js --mode development",
"webpack-test": "npx webpack --entry ./src/**/*.js ./test/*.js --output ./webpack-dist/bundle-test.js --mode development"
}
}