-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "shiori-extension",
"version": "0.0.1",
"description": "Extension to use shiori bookmark service",
"main": "index.js",
"repository": "https://github.com/kozko2001/shiori-extension",
"author": "Jordi Coscolla",
"license": "MIT",
"private": false,
"scripts": {
"build": "./node_modules/webpack/bin/webpack.js --mode production; ./remove_eval.sh",
"build-dev": "./node_modules/webpack/bin/webpack.js --watch --mode development",
"test": "jest",
"test-watch": "jest --watch -o",
"lint": "web-ext lint -s dist"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.10",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"node-sass": "^4.7.2",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.2",
"webpack": "^4.1.0"
},
"devDependencies": {
"jest": "^22.4.2",
"jest-fetch-mock": "^1.4.2",
"web-ext": "^2.6.0",
"webpack-cli": "^2.0.10"
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}