This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
80 lines (80 loc) · 3.04 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "saka",
"description": "A keyboard interface to the web",
"scripts": {
"build": "echo \"You must specify the target browser (firefox or chrome). Example: npm run build:firefox\"",
"build:prod": "echo \"You must specify the target browser (firefox or chrome). Example: npm run build:firefox:prod\"",
"build:chrome": "npm run clean && webpack --config webpack.config.js --env=dev:chrome:benchmark --progress --colors",
"build:chrome:prod": "npm run clean && webpack --config webpack.config.js --env=prod:chrome:nobenchmark --progress --colors",
"build:firefox": "npm run clean && webpack --config webpack.config.js --env=dev:firefox:benchmark --progress --colors",
"build:firefox:prod": "npm run clean && webpack --config webpack.config.js --env=prod:firefox:nobenchmark --progress --colors",
"build:profile": "npm run clean && webpack --config webpack.config.js --progress --profile --colors && cp ./static/* ./dist",
"zip": "bestzip",
"clean": "rimraf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --watch --verbose false",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lusakasa/saka.git"
},
"license": "MIT",
"devDependencies": {
"@material/ripple": "^0.38.1",
"@types/chrome": "^0.0.75",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babili": "^0.1.4",
"babili-webpack-plugin": "^0.1.2",
"bestzip": "^2.1.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.2.0",
"eslint-plugin-standard": "^4.0.0",
"extract-loader": "^3.0.0",
"generate-json-webpack-plugin": "^0.3.1",
"html-loader": "^0.5.5",
"jest": "^23.5.0",
"jest-dom": "^2.1.1",
"markdown-loader": "^4.0.0",
"node-sass": "^4.8.3",
"preact-render-spy": "^1.2.2",
"preact-render-to-string": "^4.1.0",
"preact-test-utils": "^0.1.3",
"preact-testing-library": "^0.3.0",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"sinon-chrome": "^2.3.1",
"style-loader": "^0.23.1",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"fuse.js": "^3.2.0",
"marked": "^0.6.2",
"material-components-web": "^0.38.2",
"msgx": "^1.1.3",
"preact": "^8.3.0",
"preact-compat": "^3.18.0",
"webextension-polyfill": "^0.4.0"
}
}