-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.46 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "scrollbear",
"version": "1.11.1",
"description": "scrollbear site",
"main": "index.js",
"repository": "git@github.com:owlbeardm/scrollbear.git",
"author": "Mikita Kukavenka <godinfrog@gmail.com>",
"license": "MIT",
"scripts": {
"make-url": "node parcer/make_url.js",
"make-license": "node parcer/license_make.js",
"get-spells-html": "node parcer/get_spells_html.js",
"parse-spells": "node parcer/parse_spells.js",
"format": "node parcer/format.js",
"fields": "node parcer/fields.js",
"sitemap": "node parcer/sitemap.js",
"build": "webpack --config webpack.js --mode=production",
"build-dev": "webpack --config webpack.js --mode=development",
"make-spells": "node parcer/make_spells_htmls.js",
"start": "webpack-dev-server --hot --open --config webpack.js --mode=development",
"start-prod": "webpack-dev-server --hot --open --config webpack.js --mode=production",
"start-test": "karma start --browsers NoSandFirefox --single-run=false",
"commit": "git add . && git commit -m 'autocommit' && git push",
"parse-commit": "yarn parse && yarn commit",
"lint": "eslint app/ && eslint e2e/",
"test": "karma start --browsers NoSandFirefox --single-run",
"e2e": "webdriver-manager start && protractor"
},
"dependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"angular": "^1.7.9",
"angular-mocks": "^1.7.9",
"angular-sanitize": "^1.7.9",
"angular-ui-bootstrap": "^2.5.6",
"angular-ui-router": "^1.0.25",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"favicons-webpack-plugin": "2.1.0",
"file-loader": "^5.1.0",
"fuzzy-search": "^3.2.1",
"html-loader": "^0.5.5",
"html-webpack-exclude-assets-plugin": "^0.0.7",
"html-webpack-plugin": "^3.2.0",
"jasmine": "^3.5.0",
"jasmine-core": "^3.2.1",
"jasmine-reporters": "^2.3.2",
"jquery": "^3.4.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^4.0.2",
"mini-css-extract-plugin": "^0.9.0",
"node-html-parser": "^1.2.12",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"properties-loader": "^0.0.1",
"puppeteer": "^2.1.1",
"sass-loader": "^8.0.2",
"showdown": "^1.9.1",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"turndown": "^6.0.0",
"turndown-plugin-gfm": "^1.0.2",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"webpack-pwa-manifest": "^4.2.0",
"webpack-version-file": "^0.1.6",
"workbox-webpack-plugin": "5.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"markdown-loader": "^5.1.0",
"node-sass": "^4.13.1",
"protractor": "^5.4.3",
"sw-offline-google-analytics": "^0.0.25",
"uglifyjs-webpack-plugin": "^2.2.0",
"webdriver-manager": "^12.1.7"
}
}