-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
52 lines (52 loc) · 1.36 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
50
51
52
{
"name": "pastalog",
"version": "1.0.4",
"description": "Simple, realtime visualization of neural network training performance.",
"main": "index.js",
"scripts": {
"test": "mocha test/build/index.js --debug",
"test:watch": "npm run test -- --watch",
"build": "webpack",
"build:watch": "webpack --watch",
"dev": "nodemon build/server.js -- --fakeData",
"start": "node build/server.js"
},
"repository": {
"type": "git",
"url": "git://github.com/rewonc/pastalog.git"
},
"author": "rewonc",
"license": "MIT",
"dependencies": {
"basscss": "^8.0.1",
"body-parser": "^1.15.0",
"express": "^4.13.4",
"immutable": "^3.7.6",
"jsonfile": "^2.2.3",
"lodash": "^4.6.1",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"redux": "^3.3.1",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5"
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"chai-immutable": "^1.5.4",
"css-loader": "^0.23.1",
"json-loader": "^0.5.4",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"nodemon": "^1.9.1",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.4"
}
}