forked from open-source-labs/Spearmint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "Spearmint",
"version": "2.0.0",
"description": "Spearmint",
"author": "spearmintjs",
"build": {
"appId": "com.spearmint",
"files": [
"build/**/*",
"node_modules/**/*",
"build/icon.*"
],
"directories": {
"buildResources": "build"
}
},
"main": "public/electron.js",
"homepage": "./",
"private": true,
"dependencies": {
"@types/jest": "^25.2.3",
"@types/react-beautiful-dnd": "^12.1.2",
"@types/react-dom": "^16.9.8",
"@types/react-modal": "^3.10.5",
"classnames": "^2.2.6",
"concurrently": "^4.1.2",
"cross-env": "^5.2.1",
"dotenv": "^8.2.0",
"electron-is-dev": "^1.1.0",
"fibers": "^5.0.0",
"js-beautify": "^1.10.0",
"monaco-editor": "^0.17.0",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-autosuggest": "^9.4.3",
"react-beautiful-dnd": "^11.0.3",
"react-dom": "^16.8.6",
"react-modal": "^3.8.1",
"react-monaco-editor": "^0.25.1",
"react-scripts": "^3.4.1",
"sass": "^1.26.5",
"typescript": "^3.9.2",
"wait-on": "^3.3.0"
},
"scripts": {
"react-start": "react-scripts start",
"react-build": "NODE_ENV=production react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:e2e": "./node_modules/mocha/bin/mocha src/__tests__/spec.e2e.js",
"test:integra": "mocha src/__tests__/spec.integra.js",
"test:watch": "jest --watch",
"react-eject": "react-scripts eject",
"electron-build": "NODE_ENV=production electron-builder -mwl",
"release": "npm run react-build && electron-builder --publish=always",
"build": "NODE_ENV=production npm run react-build && npm run electron-build",
"start-windows": "SET NODE_ENV=development concurrently \"cross-env BROWSER=none npm run react-start\" \"wait-on http://localhost:3000 && electron .\"",
"start": "NODE_ENV=development concurrently \"cross-env BROWSER=none npm run react-start\" \"wait-on http://localhost:3000 && electron .\""
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.8.0",
"@testing-library/react": "^8.0.9",
"@testing-library/react-hooks": "^3.2.1",
"@types/classnames": "^2.2.11",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"electron": "^5.0.3",
"electron-builder": "^22.6.1",
"electron-devtools-installer": "^3.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"mocha": "^8.3.2",
"react-test-renderer": "^16.12.0",
"spectron": "^5.0.0",
"test-data-bot": "^0.8.0"
}
}