forked from chanind/cn-grammar-matcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.78 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
{
"name": "cn-grammar-matcher",
"version": "0.0.1",
"description": "A Chinese grammar pattern matcher",
"main": "dist/GrammarMatcher.js",
"repository": "[email protected]:chanind/cn-grammar-matcher.git",
"author": "David Chanin <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest --maxWorkers=3",
"prettier": "prettier --single-quote --print-width 90 --trailing-comma es5 --write \"{*,{src,scripts,demo}/**/}*.js*\"",
"lint": "eslint --ext .js --ext .jsx src demo scripts",
"build": "NLP_HOST=https://corenlp.run/ webpack",
"gh-pages": "OUTPUT=/assets NLP_HOST=https://corenlp.run/ webpack; node scripts/fixGhPagesIndex.js",
"start": "webpack-dev-server --hot --inline",
"gen-pattern": "node scripts/genPattern.js",
"mv": "node scripts/mv.js",
"rank-examples": "node scripts/rankExamples.js"
},
"dependencies": {
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.1",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.24.1",
"babel-plugin-transform-es2015-function-name": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"cheerio": "^1.0.0-rc.2",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.16",
"commander": "^2.11.0",
"copy-webpack-plugin": "^4.0.1",
"crypto": "^0.0.3",
"css-loader": "^0.28.4",
"diacritics": "^1.3.0",
"eslint": "^4.2.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.29.0",
"jest": "^20.0.4",
"lodash.camelcase": "^4.3.0",
"lodash.escaperegexp": "^4.1.2",
"lodash.shuffle": "^4.2.0",
"lodash.uniq": "^4.5.0",
"lodash.uniqby": "^4.7.0",
"node-debug": "^0.1.0",
"node-sass": "^4.14.1",
"pre-commit": "^1.2.2",
"prettier": "^2.1.2",
"react-router-dom": "^4.1.1",
"react-spin": "^0.6.2",
"react-sticky": "^6.0.1",
"sass-loader": "^6.0.6",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.0.0"
},
"pre-commit": [
"lint"
],
"jest": {
"setupTestFrameworkScriptFile": "./jestInit"
}
}