-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 836 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
27
28
29
30
31
32
33
34
{
"name": "basic-script-set",
"version": "0.1.3",
"license": "MIT",
"main": "docs/bss.js",
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-flow": "^7.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-idx": "^2.4.0",
"core-js": "3",
"lodash": "^4.17.15",
"prettier": "^2.1.2",
"webpack": "^4.41.2"
},
"scripts": {
"dev-build": "webpack --mode=development",
"build": "webpack --mode=production",
"start": "webpack --mode=production --watch"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/runtime-corejs3": "^7.7.2",
"flow-bin": "^0.135.0",
"webpack-cli": "^3.3.10"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"trailingComma": "none"
}
}