forked from publicissapient-france/moisdujs-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.68 KB
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
{
"name": "moisdujs-base",
"version": "1.0.0",
"description": "Application de base pour le mois du JS",
"scripts": {
"clean": "test -d ./dist/ && rm -rf ./dist || echo \"no dist/ folder, continue\"",
"build": "mustache webpack-assets.json index.mustache > index.html",
"build:dev": "npm run clean && webpack -d --config webpack.config.dev.js && npm run build",
"build:prod": "npm run clean && webpack -p --config webpack.config.prod.js && npm run build",
"serve": "http-server ./ -a localhost -p 3000",
"start:dev": "npm run build:dev && npm run serve",
"start:prod": "npm run build:prod && npm run serve",
"watch:dev": "npm run build:dev && webpack-dev-server --inline --hot --content dist/ --port 3000 --config webpack.config.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xebia-france/moisdujs-base.git"
},
"license": "ISC",
"engines": {
"node": "5.x.x",
"npm": "3.x.x"
},
"dependencies": {
"bootstrap": "^3.3.6",
"jquery": "^2.2.3"
},
"devDependencies": {
"assets-webpack-plugin": "^3.4.0",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"compression-webpack-plugin": "^0.3.1",
"css-loader": "^0.23.1",
"eslint": "^2.10.2",
"eslint-loader": "^1.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"http-server": "^0.9.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mustache": "^2.2.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.1.0-beta.5",
"webpack-dev-server": "^1.14.1"
}
}