-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "domr-framework",
"version": "0.0.1",
"description": "a Component Based JavaScript Micro-Framework equipped with a static Router",
"repository": {
"type": "git",
"url": "git+https://github.com/siddacool/domr-framework.git"
},
"keywords": [
"framework",
"js",
"javascript framework",
"components",
"router",
"hash router"
],
"author": "Siddhesh Mangela",
"license": "ISC",
"scripts": {
"svgmake": "gulp svg-make",
"build": "webpack --config webpack.config.js && gulp alt-assets && gulp favicon && gulp html-templates",
"buildw": "webpack --config webpack.config.js --watch",
"start": "npm run buildw"
},
"engines": {
"node": ">=6"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.4.0",
"browser-sync": "^2.18.12",
"browser-sync-webpack-plugin": "^1.1.4",
"cli-color": "^1.2.0",
"css-loader": "^0.28.0",
"es6-promise-promise": "^1.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"gulp": "^3.9.1",
"gulp-ejs": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-svgmin": "^1.2.4",
"gulp-svgstore": "^6.1.0",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"raw-loader": "^0.5.1",
"run-sequence": "^1.2.2",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"uglify-js": "^3.3.2",
"uglifyjs-webpack-plugin": "^1.1.5",
"webpack": "3.0.0"
},
"dependencies": {
"lodash": "^4.17.10"
}
}