-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
84 lines (84 loc) · 2.57 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
{
"name": "star-wars-intro-creator",
"version": "2.0.0",
"description": "Star Wars Intro Creator by Kassel Labs",
"author": "Kassel Labs <[email protected]>",
"license": "MIT",
"engines": {
"node": "16"
},
"scripts": {
"clear": "rm -rf dist .cache public",
"build": "npm run clear && webpack --mode production && webpack --mode production -c webpack.config.render.js --output-path dist-rendering && cp .nojekyll dist && cp dist-rendering/* dist/",
"start": "webpack serve --mode development",
"start-render": "webpack serve --mode development -c webpack.config.render.js",
"test": "jest",
"test:watch": "npm run test -- --watchAll",
"test:coverage": "npm run test -- --coverage",
"test:coverage:results": "google-chrome coverage/lcov-report/index.html",
"lint": "eslint src/"
},
"jest": {
"testURL": "http://localhost/",
"moduleDirectories": [
"node_modules",
"src"
]
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.1",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"raw-loader": "^4.0.2",
"style-loader": "^2.0.0",
"stylint": "^1.5.9",
"stylus": "^0.54.5",
"stylus-loader": "^5.0.0",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@distributed/utm": "^0.1.3",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@sentry/browser": "^6.4.1",
"axios": "^0.18.0",
"bowser": "^1.9.4",
"classnames": "^2.3.1",
"devtools-detect": "^4.0.0",
"exponential-backoff": "^3.1.0",
"gif-frames": "^1.0.1",
"lodash": "^4.17.21",
"lodash.isequal": "^4.5.0",
"lodash.uniq": "^4.5.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-easy-crop": "^3.5.3",
"sweetalert2": "^7.15.1",
"usehooks-ts": "^2.10.0"
},
"staticFiles": {
"staticPath": "static",
"watcherGlob": "**/*"
}
}