-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.4 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.4 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
61
62
{
"name": "asterisk.art",
"description": "Create art with algorithms",
"version": "1.0.0",
"homepage": "https://asterisk-art.github.io/app/",
"private": true,
"contributors": [
{
"name": "Dominik Wilkowski",
"email": "Hi@Dominik-Wilkowski.com",
"url": "https://dominik-wilkowski.com"
},
{
"name": "Alex Page",
"email": "alex@alexpage.com.au",
"url": "https://alexpage.com.au"
}
],
"repository": {
"type": "git",
"url": "git://github.com/asterisk-art/app.git"
},
"bugs": {
"url": "https://github.com/asterisk-art/app/issues"
},
"license": "GPL-3.0",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "yarn test:format",
"test:format": "prettier --list-different \"**/*.{js,md,mdx,json,html}\"",
"format": "prettier --write \"**/*.{js,md,mdx,json,html}\"",
"nuke": "rm -rf node_modules && rm -rf build && rm yarn.lock"
},
"dependencies": {
"@emotion/react": "^11.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-movable": "^2.5.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.0"
},
"devDependencies": {
"prettier": "^2.1.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version"
]
}
}