-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "Ad-Hoc-Frontend-Homework",
"version": "1.0.0",
"description": "Homework using modern JS tooling (ES6/flow)",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"babel-loader": "8",
"es6-promise": "^4.0.5",
"express": "^4.15.2",
"fetch-ponyfill": "6.1.1",
"karma-sourcemap-loader": "^0.3.7",
"urijs": "^1.18.4"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"jasmine-core": "3.6.0",
"karma": "5.1.1",
"karma-chrome-launcher": "3.1.0",
"karma-jasmine": "4.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "4.0.2",
"phantomjs-prebuilt": "^2.1.7",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
},
"scripts": {
"test": "sh ./test/test.sh",
"karma": "./node_modules/karma/bin/karma start karma.conf.js --single-run",
"build": "./node_modules/.bin/webpack --config webpack.config.js"
},
"author": "Ad Hoc",
"license": "GPL-2.0"
}