-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.64 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
{
"name": "es6-spa",
"version": "1.0.0",
"description": "ES6 Single Page Application - Webpack, ES6 (Babel), Jquery, Handlebars, PostCss, Karma, Jasmine.",
"scripts": {
"watch": "NODE_ENV=development webpack -w --progress --colors",
"build": "NODE_ENV=development webpack --progress --colors",
"compile": "NODE_ENV=production webpack --progress --colors",
"docs": "node_modules/.bin/jsdoc -c jsdoc.json",
"test": "NODE_ENV=test karma start --single-run",
"test:watch": "NODE_ENV=test karma start --auto-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kvnsw/es6-spa"
},
"keywords": [
"es6",
"babel",
"webpack",
"handlebars",
"jquery",
"postcss",
"karma",
"jasmine"
],
"author": "Kevin Siow <k.siow@passerelle.co> (www.kevinsiow.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kvnsw/es6-spa/issues"
},
"homepage": "https://github.com/kvnsw/es6-spa",
"dependencies": {
"imagesloaded": "^4.1.1",
"jquery": "^3.1.0",
"pubsub-js": "^1.5.3",
"snapsvg": "^0.4.0"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-istanbul": "^0.11.0",
"babel-istanbul-loader": "^0.1.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"bundle-loader": "^0.5.4",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.24.0",
"docdash": "^0.4.0",
"es6-promise": "^3.2.1",
"eslint": "^3.1.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-loader": "^1.4.1",
"eslint-plugin-import": "^1.11.1",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.2.0",
"exports-loader": "^0.6.3",
"file-loader": "^0.9.0",
"handlebars": "^4.0.5",
"handlebars-loader": "^1.3.0",
"html-webpack-plugin": "^2.22.0",
"imports-loader": "^0.6.5",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"jsdoc": "^3.4.0",
"karma": "^1.1.1",
"karma-babel-preprocessor": "^6.0.1",
"karma-coverage": "^1.1.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"phantomjs": "^2.1.7",
"phantomjs-polyfill": "0.0.2",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.7.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.11.1",
"postcss-reporter": "^1.4.1",
"style-loader": "^0.13.1",
"stylelint": "^7.2.0",
"stylelint-config-standard": "^13.0.0",
"stylelint-loader": "^6.0.0",
"svg-inline-loader": "^0.6.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1"
}
}