-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.81 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
{
"name": "@optimumfuturist/babel-webpack-npm-starter",
"version": "2.0.0",
"description": "Babel + Webpack starter for npm package authoring",
"main": "./lib/package.bundled.js",
"directories": {
"doc": "docs"
},
"files": [
"./lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/optimumfuturist/babel-webpack-npm-starter.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"webpack",
"babel",
"npm",
"boilerplate",
"starter",
"template",
"es6",
"esnext",
"umd",
"amd",
"commonjs"
],
"author": "Optimum Futurist Tech, Inc. <engineering@optimumfuturist.com> (http://www.optimumfuturist.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/optimumfuturist/babel-webpack-npm-starter/issues"
},
"homepage": "https://github.com/optimumfuturist/babel-webpack-npm-starter#readme",
"scripts": {
"test": "Echo 'test'",
"clean": "rimraf ./lib",
"dev": "webpack -w --mode=development --devtool=inline-source-map",
"build": "npm run clean && webpack --mode=production",
"lint": "eslint ./src --fix",
"docs": "npx jsdoc -c jsdoc.conf.json",
"start": "serve -l 5001 examples",
"start:all": "concurrently \"npm run start\" \"npm run dev\"",
"start:docs": "concurrently \"npm run docs\" \"serve -l 5002 docs\""
},
"devDependencies": {
"@swc/core": "^1.8.0",
"better-docs": "^2.7.4-dev.1",
"concurrently": "^9.0.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"jsdoc": "4.0.3",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"rimraf": "^5.0.0",
"serve": "^14.2.3",
"swc-loader": "^0.2.6",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
}
}