-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
74 lines (74 loc) · 2.32 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
{
"name": "japari-pedia",
"version": "1.3.1",
"description": "Welcome to youkoso japari-park!",
"keywords": [
"chrome-extension",
"kemono-friends"
],
"repository": {
"type": "git",
"url": "https://github.com/miyaoka/japari-pedia"
},
"author": "Masaya Kazama",
"license": "MIT",
"scripts": {
"start": "yarn dev",
"dev": "webpack-dev-server --config webpack/dev.config.babel.js",
"build": "cross-env NODE_ENV=production webpack --config webpack/prod.config.babel.js --display-error-details --color",
"prod": "yarn rimraf && yarn build && yarn zip",
"rimraf": "rimraf build.zip build/",
"zip": "bestzip build.zip build/",
"lint": "yarn lint:js && yarn lint:css",
"lint:fix": "yarn lint:js:fix && yarn lint:css:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint --fix .",
"lint:css": "stylelint src/**/*.css",
"lint:css:fix": "stylefmt -r src/**/*.css"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.22.0",
"bestzip": "^1.1.3",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-jsx-import": "^0.0.1",
"eslint-plugin-react": "^6.10.0",
"file-loader": "^0.10.0",
"node-sass": "^4.5.0",
"postcss": "^5.2.13",
"postcss-loader": "^1.3.0",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.0",
"style-loader": "^0.13.1",
"stylefmt": "^5.1.2",
"stylelint": "^7.8.0",
"stylelint-config-standard": "^16.0.0",
"uglify-js": "git://github.com/mishoo/UglifyJS2#harmony",
"url-loader": "^0.5.7",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"autoprefixer": "^6.7.3",
"copy-webpack-plugin": "^4.0.1",
"fs-extra": "^2.0.0",
"html-webpack-plugin": "^2.28.0",
"postcss-smart-import": "^0.6.7",
"precss": "^1.4.0",
"uglifyjs-webpack-plugin": "^0.2.0",
"webpack": "^2.2.1",
"webpack-merge": "^2.6.1",
"write-file-webpack-plugin": "^3.4.2",
"yaml-loader": "^0.4.0"
}
}