This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 3.74 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
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "graasp-app-code",
"version": "0.5.5",
"private": true,
"author": "React EPFL",
"contributors": [
"Juan Carlos Farah"
],
"homepage": ".",
"license": "AGPL-3.0-only",
"dependencies": {
"@material-ui/core": "4.9.2",
"@material-ui/icons": "4.9.1",
"@material-ui/styles": "4.9.0",
"@uppy/core": "1.8.2",
"@uppy/drag-drop": "1.4.6",
"@uppy/react": "1.4.6",
"@uppy/xhr-upload": "1.5.2",
"brace": "0.11.1",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.13.0",
"i18next": "15.1.1",
"javascript-terminal": "1.0.3",
"json2csv": "4.5.4",
"lodash": "4.17.19",
"monaco-editor": "0.17.1",
"prop-types": "15.7.2",
"qs": "6.7.0",
"react": "16.12.0",
"react-ace": "7.0.2",
"react-csv": "2.0.1",
"react-dom": "16.12.0",
"react-ga": "2.7.0",
"react-i18next": "10.9.0",
"react-monaco-editor": "0.31.0",
"react-redux": "7.1.3",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"react-scripts": "3.3.0",
"react-select": "2.4.3",
"react-syntax-highlighter": "11.0.2",
"react-terminal-component": "git://github.com/graasp/react-terminal-component.git",
"react-toastify": "5.1.0",
"react-wordcloud": "1.0.8",
"redux": "4.0.4",
"redux-devtools-extension": "2.13.8",
"redux-promise": "0.6.0",
"redux-thunk": "2.3.0",
"stopword": "0.3.3"
},
"scripts": {
"start": "npm-run-all --parallel start:local start:api",
"start:local": "env-cmd -f ./.env.local react-scripts start",
"start:api": "json-server --watch data/db.json --port 3636 --id _id --routes data/routes.json",
"prestart:api": "cat data/default.json > data/db.json",
"build": "run-s build:react build:bundle",
"build:react": "react-scripts build",
"build:bundle": "webpack --config webpack.config.js --mode=production",
"build:local": "env-cmd -f ./.env.local yarn build",
"build:dev": "env-cmd -f ./.env.dev yarn build",
"build:prod": "env-cmd -f ./.env.prod yarn build",
"build:version": "REACT_APP_VERSION=$CI_BRANCH env-cmd --no-override -f ./.env.prod yarn build",
"hooks:uninstall": "node node_modules/husky/husky.js uninstall",
"hooks:install": "node node_modules/husky/husky.js install",
"lint": "eslint .",
"prettier": "prettier --check 'src/**/*.js'",
"prettier:write": "prettier --write 'src/**/*.js'",
"test": "react-scripts test --passWithNoTests",
"test:once": "cross-env CI=true env-cmd -f ./.env.test react-scripts test --env=jsdom --passWithNoTests",
"test:coverage": "cross-env CI=true env-cmd -f ./.env.test react-scripts test --env=jsdom --coverage --passWithNoTests",
"test:ci": "run-s test:coverage report",
"report": "cat ./coverage/lcov.info | env-cmd -f ./.env.test codacy-coverage",
"eject": "react-scripts eject",
"release": "git add CHANGELOG.md && standard-version -a"
},
"devDependencies": {
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "9.1.1",
"codacy-coverage": "3.4.0",
"cross-env": "7.0.2",
"env-cmd": "10.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.17.0",
"glob": "7.1.4",
"html-webpack-plugin": "3.2.0",
"husky": "4.2.5",
"interpolate-html-plugin": "3.0.0",
"json-server": "0.16.1",
"npm-run-all": "4.1.5",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"script-ext-html-webpack-plugin": "2.1.3",
"standard-version": "8.0.2",
"uglifyjs-webpack-plugin": "2.1.3",
"webpack-cli": "3.3.2"
},
"release": {
"analyzeCommits": "conventional"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}