-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "paxos",
"version": "0.0.1",
"description": "Visualize the paxos algorithm.",
"main": "index.js",
"scripts": {
"build": "tsc",
"old-start": "tsc --watch",
"start": "webpack --config webpack.config.js --watch",
"test": "mocha -r ts-node/register test/**/*.ts"
},
"author": "Eric Chen",
"license": "MIT",
"dependencies": {
"@types/mocha": "^5.2.0",
"@types/react": "^16.3.14",
"@types/react-dnd": "^2.0.36",
"@types/react-dnd-html5-backend": "^2.1.9",
"@types/react-dom": "^16.0.5",
"chai": "^4.1.2",
"mocha": "^7.1.2",
"react": "^16.4.0",
"react-dnd": "^4.0.2",
"react-dnd-html5-backend": "^4.0.2",
"react-dom": "^16.13.1",
"webpack-cli": "^3.3.11"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"awesome-typescript-loader": "^5.0.0",
"css-loader": "^3.5.3",
"node-sass": "^4.14.0",
"sass-loader": "^7.0.3",
"source-map-loader": "^0.2.3",
"style-loader": "^0.21.0",
"ts-node": "^6.0.5",
"typescript": "^2.8.3",
"webpack": "^4.43.0"
}
}