-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
53
54
55
56
57
58
59
{
"name": "nand-together",
"version": "1.0.0",
"description": "Participative Circuit Simulator",
"private": true,
"scripts": {
"build": "webpack",
"build:watch": "nodemon -w webpack.config.js --exec webpack -- --watch",
"build:serve": "nodemon -w webpack.config.js --exec webpack-dev-server",
"format": "prettier --write '**/*.js' '!public/**'",
"server:watch": "nodemon -w src/server bin/www",
"start": "DEBUG=nand:* run-p build:serve server:watch",
"test": "mocha --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ut7/nand-together.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ut7/nand-together/issues"
},
"homepage": "https://github.com/ut7/nand-together#readme",
"dependencies": {
"chance": "^1.0.16",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"express-static-gzip": "^1.1.3",
"lodash": "^4.17.11",
"morgan": "~1.9.0",
"socket.io": "^2.1.1"
},
"devDependencies": {
"@webpack-cli/init": "^0.1.0",
"ajv": "^6.5.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"npm-run-all": "^4.1.3",
"p5": "^0.7.2",
"prettier": "^1.14.3",
"style-loader": "^0.23.0",
"supertest": "^3.3.0",
"url-loader": "^1.1.1",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
}
}