-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "t9-dictionary",
"version": "1.0.0",
"description": "T9 Dictionary project demonstrating Tries for Ada's Advanced Data Strucutres course",
"main": "index.js",
"scripts": {
"test": "jest --watch",
"grade": "jest",
"build": "webpack",
"start": "webpack-dev-server",
"deploy": "npm run build && gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/droberts-ada/t9-dictionary.git"
},
"author": "Dan Roberts",
"license": "ISC",
"bugs": {
"url": "https://github.com/droberts-ada/t9-dictionary/issues"
},
"homepage": "https://github.com/droberts-ada/t9-dictionary#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.1.0",
"gh-pages": "^2.2.0",
"jest": "^25.1.0",
"raw-loader": "^4.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"worker-plugin": "^4.0.2"
},
"dependencies": {
"object-sizeof": "^1.5.3",
"pretty-bytes": "^5.3.0",
"rxjs": "^6.5.4",
"seedrandom": "^3.0.5"
}
}