forked from ideacrew/enroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.72 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
{
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@fortawesome/fontawesome-free": "^5.8.2",
"@fortawesome/free-brands-svg-icons": "^5.8.1",
"@fortawesome/free-regular-svg-icons": "^5.8.1",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@rails/actioncable": "^6.0.3-4",
"@rails/webpacker": "^4.0.4",
"@types/node": "^12.0.2",
"@webcomponents/webcomponentsjs": "^2.2.10",
"axios": "^0.18.0",
"bootstrap": "^4.3.1",
"browserslist": "^4.6.0",
"html-loader": "^0.5.5",
"jquery": "^3.4.0",
"jquery-ui": "^1.13.2",
"object-assign": "^4.1.0",
"popper.js": "^1.15.0",
"postcss-cssnext": "^3.1.0",
"postcss-smart-import": "^0.7.6",
"rails-ujs": "^5.2.3",
"sortablejs": "^1.10.2",
"stimulus": "^1.1.1",
"stimulus_reflex": "^3.3.0",
"sweetalert2": "^8.13.0",
"turbolinks": "^5.2.0",
"webpack-merge": "^4.2.2",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@types/jasmine": "~2.8.8",
"jasmine-core": "~2.99.1",
"jest-junit": "^6.4.0",
"jsdom-mount": "0.1.0",
"lodash": "^4.17.10",
"moment": "^2.22.1",
"puppeteer": "^1.3.0",
"regenerator-runtime": "^0.11.1",
"uglifyjs-webpack-plugin": "1",
"webpack": "^4.32.2",
"webpack-dev-server": "^3.4.1"
},
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"start:angular": "ANGULAR_ADMIN_APPLICATION_URL=http://localhost:4200 bundle exec rails s",
"hugo:dev": "cd hugo && hugo server --disableFastRender",
"build:hugo": "cd hugo && hugo --minify",
"build:hugo:local": "rm -rf hugo/public && npm run build:hugo",
"services:start": "docker-compose -f .docker/docker-compose.build.yml up -d",
"services:stop": "docker-compose -f .docker/docker-compose.build.yml down",
"translations": "bundle exec rake seed:translations['db/seedfiles/english_translations_seed.rb']",
"swap:me": "CLIENT=me bundle exec rake configuration:client_configuration_toggler",
"image:build": "docker build -f .docker/production/Dockerfile.gha --network=host --build-arg CLIENT=me --target=deploy -t enroll-local ."
},
"jest": {
"testURL": "http://localhost",
"reporters": [
"default",
"jest-junit"
],
"roots": [
"spec/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
]
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "./tmp",
"outputName": "jest_junit.xml",
"classNameTemplate": "{classname}",
"titleTemplate": "{classname}-{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
}
}