-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.35 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
{
"name": "canopus",
"version": "1.0.0",
"description": "API Starter Project",
"main": "assets/src/index.js",
"engines": {
"node": "8.x",
"npm": ">=5.6.0"
},
"scripts": {
"build": "webpack --config webpack.production.config.js --progress --colors",
"start": "webpack-dev-server --config webpack.development.config.js --hot --inline",
"test": "NODE_ENV=test karma start karma.config.js --single-run",
"test:watch": "NODE_ENV=test karma start karma.config.js --auto-watch"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/josuemontano/api-starter.git"
},
"author": "Josue Montano <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/josuemontano/api-starter/issues"
},
"homepage": "https://github.com/josuemontano/api-starter#README",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@babel/runtime": "^7.2.0",
"axios": "^0.18.0",
"hellojs": "^1.17.1",
"js-cookie": "^2.2.0",
"preact": "^8.3.1",
"preact-compat": "^3.18.4",
"preact-router": "^2.6.1",
"uikit": "^3.0.0-rc.17"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"expect": "^23.6.0",
"file-loader": "^3.0.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-webpack": "^3.0.5",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^5.2.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"sinon": "^7.2.2",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.28.3",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14",
"webpack-manifest-plugin": "^2.0.4",
"webpack-merge": "^4.2.1"
}
}