generated from dxw/rails-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "sct-buy-for-your-school",
"private": true,
"dependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@hods/timeline": "^0.4.0",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.5",
"@rails/ujs": "^7.1.3",
"accessible-autocomplete": "^3.0.0",
"babel-loader": "^9.1.3",
"babel-plugin-macros": "^3.1.0",
"core-js": "^3.38.0",
"dropzone": "^6.0.0-beta.2",
"express": "^4.17.3",
"govuk-frontend": "^5.5.0",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"sass": "^1.77.8",
"tinymce": "^7.3.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.8",
"babel-plugin-dynamic-import-node": "^2.3.3",
"jest-environment-jsdom": "^29.6.1",
"webpack-dev-server": "^5.0.4"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
]
},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"vendor/bundle/ruby"
],
"roots": [
"app/javascript"
],
"moduleDirectories": [
"node_modules/",
"app/javascript"
],
"setupFilesAfterEnv": [
"./app/javascript/setupTests.js"
],
"testEnvironment": "jsdom"
},
"scripts": {
"postinstall": "sh script/assets/copy-assets.sh",
"build": "webpack --config ./config/webpack/webpack.config.js",
"build:css": "sass ./app/assets/stylesheets/application.sass.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules"
}
}