forked from timwis/jkan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "es6-boilerplate",
"version": "1.0.0",
"description": "Front-end project boilerplate with es6 build tools. Includes babel, webpack, and npm scripts.",
"main": "scripts/src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=development webpack s",
"build": "NODE_ENV=production webpack build --config ./webpack.config.js --stats verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timwis/es6-boilerplate.git"
},
"author": "timwis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/timwis/es6-boilerplate/issues"
},
"homepage": "https://github.com/timwis/es6-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"babel-loader": "^9.1.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"ampersand-state": "^5.0.0",
"bootstrap": "^3.4.1",
"github-api": "^2.3.0",
"jquery-deparam": "^0.5.2",
"jquery-serializejson": "^2.6.2",
"js-cookie": "^2.1.0",
"js-yaml": "^3.14.1",
"lodash": "^4.17.20",
"notie": "github:timwis/notie#string-types",
"select2": "^4.0.2"
}
}