-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
34 lines (34 loc) · 1.01 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
{
"name": "webrice",
"version": "1.0.0",
"description": "WebRICE is an open source web reader. It reads text aloud to users!",
"main": "build/WebRICE.js",
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server",
"slint": "stylelint \"**/*.css\"|| echo \"lint faild for the above file(s)\"",
"elint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"author": "Sunneva Þorsteinsdóttir and Judy Fong",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"concurrently": "^5.2.0",
"eslint": "^7.4.0",
"eslint-config-google": "^0.14.0",
"stylelint": "^13.6.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"ts-loader": "^8.0.0",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@types/color": "^3.0.1",
"color": "^3.1.2",
"idb-keyval": "^3.2.0"
}
}