-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 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
{
"name": "codewars",
"version": "0.0.1",
"private": true,
"homepage": "./",
"main": "scripts/start.js",
"dependencies": {
"axios": "^0.18.0",
"dayjs": "^1.7.7",
"mobx": "^5.6.0",
"mobx-react": "^5.3.6",
"polished": "^2.3.1",
"prop-types": "^15.6.2",
"ramda": "^0.26.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.2",
"styled-components": "^4.0.3"
},
"scripts": {
"start": "nf start -p 3000",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"electron-start": "node scripts/electron-wait-react",
"react-start": "BROWSER=none react-scripts start",
"pack": "build --dir",
"dist": "npm run build && build",
"postinstall": "install-app-deps"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [],
"devDependencies": {
"electron": "^4.0.0",
"electron-builder": "^20.42.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0"
},
"build": {
"appId": "com.woodkraft.desktop",
"extends": null,
"win": {},
"directories": {
"buildResources": "public"
}
}
}