-
Notifications
You must be signed in to change notification settings - Fork 138
/
package.json
40 lines (40 loc) · 1.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
{
"name": "poplar-annotation",
"version": "2.0.3",
"description": "web-based annotation tool for natural language processing (NLP) needs, inspired by brat rapid annotation tool.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"repository": "https://github.com/synyi/Poplar.git",
"author": "longfangsong <longfangsong@icloud.com>",
"license": "GPL-3.0-or-later",
"scripts": {
"start:dev": "webpack-dev-server --config webpack.dev.js",
"start:test": "webpack-dev-server --config webpack.test.js",
"test": "bash -c ./src/Test/test.sh",
"build": "webpack -p --config webpack.prod.js",
"analyz": "NODE_ENV=production npm_config_report=true webpack -p --config webpack.anal.js\n"
},
"dependencies": {
"events": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/events": "^3.0.0",
"@types/mocha": "^5.2.7",
"@types/puppeteer": "^1.19.1",
"chai": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mocha": "^6.2.0",
"puppeteer": "^1.19.0",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"typescript": "^3.7.4",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.36.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}