-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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
{
"name": "game_of_life",
"version": "1.0.0",
"description": "An elm implementation of Conway's Game of Life",
"main": "index.js",
"scripts": {
"test": "elm test",
"prebuild": "rimraf dist && npm test",
"build": "webpack --config webpack.config.js",
"start": "webpack-dev-server --hot --inline"
},
"repository": {
"type": "git",
"url": "https://github.com/mam10eks/game_of_life/"
},
"author": "Maik Fröbe",
"license": "Apache-2.0",
"devDependencies": {
"autoprefixer": "^8.5.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^0.28.11",
"dateformat": "^3.0.3",
"elm": "^0.18.0",
"elm-format": "^0.6.1-alpha",
"elm-test": "^0.18.12",
"elm-webpack-loader": "^4.5.0",
"file-loader": "^1.1.11",
"git-revision-webpack-plugin": "^3.0.3",
"node-sass": "^4.9.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"uninstall": "0.0.0",
"url-loader": "^1.0.1",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"bootstrap": "^3.3.7",
"bootstrap-slider": "^9.9.0",
"intro.js": "^2.9.3",
"jquery": "^3.3.1",
"js-cookie": "^2.2.0"
}
}