forked from Roboleo1010/logic-gate-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.18 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.18 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
{
"name": "logic-gate-simulator",
"version": "0.1.0",
"private": true,
"dependencies": {
"express": "^4.17.1",
"compression": "^1.7.4",
"react": "^17.0.1",
"react-color": "^2.19.3",
"react-dom": "^17.0.1",
"react-notifications-component": "^3.0.3",
"react-scripts": "4.0.0-next.98",
"react-sortablejs": "^6.0.0",
"sortablejs": "^1.12.0",
"typescript": "^4.1.2"
},
"scripts": {
"start": "node server.js",
"start-dev": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"deploy": "git push heroku master"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^16.9.8",
"@types/react-notifications-component": "^2.4.0",
"@types/sortablejs": "^1.10.6",
"node-sass": "4.14.1"
}
}