-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
executable file
·112 lines (112 loc) · 3.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "adroit-starter-kit",
"version": "1.0.0",
"description": "Starter Kit with HBS, Assemble, Webpack",
"scripts": {
"clean": "rimraf www-root/",
"lint": "eslint --ext .js --ext .jsx web/webroot lib",
"build": "webpack --env.dev",
"build:prod": "webpack -p --env.analyse",
"build:analyse": "npm run build -- --env.analyse",
"build:watch": "webpack --watch --env.dev",
"serve": "live-server www-root",
"web": "webpack-dev-server --env.dev",
"start": "webpack-dev-server --env.dev"
},
"engines": {
"node": ">=8.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/raviroshan/adroit"
},
"author": "Karthik Naidu",
"contributors": [
"Ravi Roshan"
],
"license": "MIT",
"devDependencies": {
"assemble-webpack": "^2.0.2",
"async": "^2.5.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"browser-sync": "^2.17.5",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"chalk": "^2.3.0",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.7",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-exclude-assets-plugin": "0.0.5",
"html-webpack-harddisk-plugin": "^0.1.0",
"html-webpack-plugin": "^2.30.1",
"jshint": "^2.9.3",
"karma-handlebars-preprocessor": "^0.2.0",
"keymirror": "^0.1.1",
"list.js": "^1.5.0",
"live-server": "^1.2.0",
"lodash.assign": "^4.2.0",
"lodash.difference": "^4.5.0",
"lodash.flattendeep": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.keys": "^4.2.0",
"lodash.last": "^3.0.0",
"lodash.map": "^4.6.0",
"lodash.uniq": "^4.5.0",
"node-sass": "^4.7.2",
"object.values": "^1.0.4",
"postcss-loader": "^2.0.10",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"run-sequence": "^1.2.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0",
"webpack-visualizer-plugin": "^0.1.11",
"yargs": "^6.4.0"
},
"dependencies": {
"assemble": "0.6.0-beta.5",
"body-parser": "^1.17.1",
"bootstrap": "^4.0.0",
"class-name-starting-with": "^1.0.0",
"handlebars": "^4.0.3",
"handlebars-helper-repeat": "^1.0.0",
"jquery": "^3.3.1",
"list-files": "^1.1.3",
"lodash.camelcase": "^4.3.0",
"lodash.debounce": "^4.0.8",
"lodash.defaults": "^4.2.0",
"lodash.filter": "^4.6.0",
"lodash.findindex": "^4.6.0",
"lodash.first": "^3.0.0",
"lodash.foreach": "^4.5.0",
"lodash.indexof": "^4.0.5",
"lodash.isarray": "^4.0.0",
"lodash.isempty": "^4.4.0",
"lodash.isfunction": "^3.0.8",
"lodash.isobject": "^3.0.2",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.keys": "^4.2.0",
"lodash.times": "^4.3.2",
"lodash.uniqueid": "^4.0.1",
"lodash.values": "^4.3.0",
"popper.js": "^1.12.9",
"sticky-kit": "^1.1.3",
"superagent": "^3.3.2",
"xss": "^0.3.3"
}
}