-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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
{
"name": "training-js-mazerobot",
"version": "0.0.0",
"description": "Programming game to help robot get through the maze",
"main": "src/index.js",
"scripts": {
"build": "./node_modules/.bin/webpack",
"watch": "./node_modules/.bin/webpack -w",
"test": "./node_modules/.bin/babel-node --presets es2015 tests"
},
"author": "Shmavon Gazanchyan <[email protected]>",
"contributors": [
"Riccardo Bellingeri <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MunGell/training-js-mazerobot.git"
},
"bugs": {
"url": "https://github.com/MunGell/training-js-mazerobot/issues"
},
"homepage": "https://github.com/MunGell/training-js-mazerobot#readme",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.8.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"bootstrap-less": "^3.3.8",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"glob": "^7.0.3",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"path": "^0.12.7",
"tape": "^4.5.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0"
},
"dependencies": {
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-interval": "^1.3.1"
}
}