-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "dinosaur-remix",
"version": "0.1.0",
"author": "Adam Goforth",
"description": "A web app for remixing Dinosaur Comics",
"license": "GPL-2.0",
"homepage": "http://dinoremix.definingterms.com",
"repository": {
"type": "git",
"url": "git+https://github.com/aag/dinoremix.git"
},
"bugs": {
"url": "https://github.com/aag/dinoremix/issues"
},
"dependencies": {
"mithril": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"babel-loader": "^9.1.0",
"browserslist": "^4.16.5",
"caniuse-lite": "^1.0.30001197",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"file-loader": "^6.2.0",
"jsdom": "^20.0.2",
"mini-css-extract-plugin": "^2.7.0",
"minimist": ">=1.2.6",
"mithril-query": "^4.0.1",
"ospec": "^4.1.1",
"postcss": "^8.4.31",
"postcss-scss": "^4.0.5",
"sass": "^1.32.8",
"sass-loader": "^13.2.0",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-scss": "^6.3.2",
"terser": "^5.14.2",
"terser-webpack-plugin": "^5.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.0",
"webpack-merge": "^5.8.0"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"check-style": "eslint public/assets && stylelint \"public/assets/sass/**/*.scss\"",
"fix-style": "eslint public/assets --fix",
"start": "webpack --config webpack.dev.js --watch",
"test": "ospec --preload ./test-setup.js"
}
}