This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.77 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
{
"name": "tulsawebdevs.org",
"version": "0.1.1",
"description": "frontend build proccess for tulsawebdevs.org",
"directories": {
"doc": "docs"
},
"scripts": {
"server-dev": "webpack-dev-server --config twd/assets/webpack.config.dev.js --progress --colors --port 2992",
"server-hot": "webpack-dev-server --config twd/assets/webpack.config.hot.js --hot --progress --colors --port 2992 --inline",
"watch": "webpack --config twd/assets/webpack.config.js --watch --progress --colors --display-error-details --display-reasons",
"dev": "npm run server-dev",
"hot": "npm run server-hot",
"build": "webpack --config twd/assets/webpack.config.js --progress --colors --display-error-details --display-reasons",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tulsawebdevs/tulsawebdevs.org.git"
},
"bin": {
"webpack": "node_modules/webpack/bin/webpack.js"
},
"keywords": [
"build"
],
"author": "Patrick Forringer",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/tulsawebdevs/tulsawebdevs.org/issues"
},
"homepage": "https://github.com/tulsawebdevs/tulsawebdevs.org#readme",
"devDependencies": {
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"babel-core": "^6.2.1",
"babel-eslint": "^4.0.10",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-runtime": "^6.2.0",
"clean-webpack-plugin": "^0.1.3",
"core-js": "^1.1.1",
"css-loader": "^0.23.0",
"eslint": "^1.2.1",
"eslint-loader": "^1.0.0",
"extract-text-webpack-plugin": "^0.9.1",
"node-sass": "^3.3.2",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.11.0",
"webpack-bundle-tracker": "0.0.51"
}
}