-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "n-queens-visualizer",
"version": "1.0.0",
"description": "A visual exploration of the n-queens problem",
"scripts": {
"start": "node server.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/haseeb-qureshi/n-queens-visualizer"
},
"keywords": [
"react",
"reactjs",
"n-queens",
"simulated annealing",
"local search",
"eight queens",
"algorithms"
],
"author": "Haseeb Qureshi <haseeb@haseebq.com> (http://github.com/haseeb-qureshi)",
"license": "MIT",
"homepage": "https://github.com/haseeb-qureshi",
"devDependencies": {
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"eslint-plugin-react": "^3.6.2",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"css-loader": "^0.23.1",
"flux": "^2.0.0",
"object-assign": "^1.0.0",
"rc-slider": "^3.3.2",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"style-loader": "^0.13.0"
}
}