-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
57 lines (57 loc) · 1.33 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
{
"private": true,
"name": "kinvey-html5-starter",
"version": "1.0.0",
"description": "HTML5 starter app for the Kinvey platform.",
"author": "Kinvey",
"license": "Apache-2.0",
"scripts": {
"build": "webpack --config webpack.prod.js --colors",
"dev": "webpack-dev-server --open --config webpack.dev.js"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bootstrap": "4.1.3",
"jquery": "3.3.1",
"kinvey-html5-sdk": "4.0.0",
"popper.js": "1.14.4"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"eslint-loader": "^2.1.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"semi": 2
}
},
"babel": {
"presets": [
"es2015"
]
}
}