-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
95 lines (95 loc) · 3.8 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
{
"name": "@conversationai/perspectiveapi-authorship-demo",
"version": "0.8.11",
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
"serve": "npm run setup && ./node_modules/.bin/concurrently \"npm run start:dev-server\" \"ng serve --proxy-config proxy.conf.json\"",
"start:dev-server": "NODE_ENV=development node node_modules/@conversationai/perspectiveapi-simple-server/build/server/run_server.js build/config/server_config.json",
"start:prod-server": "NODE_ENV=production node node_modules/@conversationai/perspectiveapi-simple-server/build/server/run_server.js build/config/server_config.json",
"setup": "mkdir -p build/config/ && rsync --ignore-existing config/server_config.template.json build/config/server_config.json",
"build": "npm run build:prod",
"build:dev": "npm run setup && ng build --project perspectiveapi-authorship-demo",
"build:dev-customElements": "npm run setup && ng build --project customCheckerElements",
"build:prod": "npm run setup && ng build --project perspectiveapi-authorship-demo --prod --extract-css=false --build-optimizer=false",
"build:prod-customElements": "npm run setup && ng build --project customCheckerElements --prod --extract-css=false",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"packagr": "ng-packagr -p ng-package.json && cp -r ./src/assets ./dist/src/assets",
"build-plugin-js": "npm run build:prod-customElements && cat build/static/runtime*.js build/static/polyfills*.js build/static/main*.js >build/static/perspective_authorship_widget.js"
},
"peerDependencies": {
"@angular/animations": "^7.2.14",
"@angular/cdk": "^7.3.7",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/compiler-cli": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/elements": "^7.2.0",
"@angular/forms": "~7.2.0",
"@angular/http": "^6.0.3",
"@angular/material": "^7.3.7",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"@types/gsap": "~1.20.2",
"gsap": "~2.1.3"
},
"dependencies": {
"@conversationai/perspectiveapi-simple-server": "^0.2.0",
"@types/d3-interpolate": "^1.1.5",
"@types/gapi": "^0.0.39",
"@types/gsap": "~1.20.2",
"@types/lodash": "^4.14.108",
"@webcomponents/custom-elements": "^1.0.6",
"codelyzer": "5.1.2",
"concurrently": "^5.0.0",
"d3-color": "^1.0.3",
"d3-interpolate": "^1.1.4",
"gsap": "~2.1.3",
"hammerjs": "^2.0.8",
"jasmine": "3.5.0",
"lodash": "^4.17.21",
"ng-recaptcha": "^5.0.0",
"ngx-color-picker": "^8.2.0",
"rxjs": "6.5.4",
"toxiclibsjs": "^0.3.3",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.24",
"@angular/animations": "^8.2.9",
"@angular/cdk": "^8.2.2",
"@angular/cli": "~8.3.8",
"@angular/common": "~8.2.9",
"@angular/compiler": "~8.2.9",
"@angular/compiler-cli": "~8.2.9",
"@angular/core": "~8.2.9",
"@angular/elements": "^8.2.9",
"@angular/forms": "~8.2.9",
"@angular/http": "^7.2.15",
"@angular/language-service": "~8.2.9",
"@angular/material": "^8.2.2",
"@angular/platform-browser": "~8.2.9",
"@angular/platform-browser-dynamic": "~8.2.9",
"@angular/router": "~8.2.9",
"@types/jasmine": "~3.4.0",
"@types/node": "~12.7.11",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.3.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "^2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"karma-mocha": "^1.3.0",
"mocha": "^6.2.1",
"ng-packagr": "^10.1.1",
"protractor": "~5.4.2",
"ts-node": "~8.4.1",
"tslint": "~5.20.0",
"typescript": "~3.5.3"
}
}