-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
{
"name": "math-quiz-with-typescript",
"version": "1.0.0",
"description":
"Simple browser game written in TypeScript with no frameworks - just for fun",
"main": "index.html",
"scripts": {
"dev": "webpack --progress --watch --mode development",
"build": "webpack --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakubzet/math-quiz-with-typescript.git"
},
"keywords": ["typescript", "javascript", "html", "css", "math", "quiz"],
"author": "jakubzet",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakubzet/math-quiz-with-typescript/issues"
},
"homepage": "https://github.com/jakubzet/math-quiz-with-typescript#readme",
"devDependencies": {
"@types/lodash": "^4.14.106",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015-native-modules": "^6.9.4",
"css-loader": "^0.28.11",
"node-sass": "^4.8.3",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"ts-loader": "^4.1.0",
"typescript": "^2.8.1",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-livereload-plugin": "^2.1.1"
},
"dependencies": {
"bulma": "^0.6.2",
"lodash": "^4.17.5"
}
}