-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.11 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.11 KB
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
{
"name": "funsketch",
"version": "1.0.0",
"description": "an experimental application that has simple drawing features, as well as some interesting filter and brush options. more importantly, you can also make some quick, simple animations!",
"main": "server.js",
"scripts": {
"test": "jest --config ./jest.config.json --env=jsdom",
"lint": "eslint",
"lint:fix": "eslint --fix",
"dev": "cross-env NODE_ENV=development webpack --mode development",
"build": "cross-env NODE_ENV=production webpack --mode production",
"serve": "cross-env NODE_ENV=development webpack serve --mode development",
"e2e": "testcafe chrome:headless tests/e2e/fixture.js"
},
"dependencies": {
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@html-eslint/eslint-plugin": "^0.24.1",
"@html-eslint/parser": "^0.24.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@webpack-cli/serve": "^1.6.0",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"eslint": "^9.1.1",
"express": "^4.18.2",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.0",
"pre-commit": "^1.2.2",
"react-refresh": "^0.10.0",
"source-map-loader": "^0.2.4",
"style-loader": "^3.3.0",
"testcafe": "^3.6.2",
"webpack": "^5.77.0",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.13.2"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/syncopika/funSketch.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/syncopika/funSketch/issues"
},
"homepage": "https://github.com/syncopika/funSketch#readme"
}