-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.28 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": "graasp-lab-light-simulator",
"version": "0.3.0",
"private": true,
"author": "Nuno R. C. Gomes",
"contributors": [
"Juan Carlos Farah"
],
"homepage": ".",
"license": "MIT",
"dependencies": {
"@material-ui/core": "3.9.3",
"@material-ui/icons": "3.0.2",
"bootstrap": "4.3.1",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.9.1",
"i18next": "14.0.1",
"konva": "3.2.4",
"lodash": "4.17.20",
"prop-types": "15.6.2",
"qs": "6.6.0",
"react": "16.8.0",
"react-dom": "16.8.0",
"react-ga": "3.3.0",
"react-i18next": "10.0.0",
"react-konva": "16.8.6",
"react-redux": "6.0.0",
"react-scripts": "2.1.3",
"react-select": "2.3.0",
"react-toastify": "4.5.2",
"reactstrap": "7.1.0",
"redux": "4.0.1",
"redux-devtools-extension": "2.13.8",
"redux-promise": "0.6.0",
"redux-thunk": "2.3.0"
},
"scripts": {
"start": "npm-run-all --parallel start:local start:api",
"start:local": "env-cmd ./.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",
"tab:start:api": "ttab -t 'Graasp API' -G npm run start:api",
"tab:start:local": "ttab -t 'Graasp App' -G npm run start:local",
"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 ./.env.local yarn build",
"build:dev": "env-cmd ./.env.dev yarn build",
"build:prod": "env-cmd ./.env.prod yarn build",
"build:version": "REACT_APP_VERSION=$CI_BRANCH env-cmd --no-override ./.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'",
"test": "react-scripts test",
"test:once": "cross-env CI=true env-cmd ./.env.test react-scripts test --env=jsdom",
"test:coverage": "cross-env CI=true env-cmd ./.env.test react-scripts test --env=jsdom --coverage",
"test:ci": "run-s test:coverage report",
"report": "cat ./coverage/lcov.info | env-cmd ./.env.test codacy-coverage",
"eject": "react-scripts eject",
"release": "git fetch --tags && git add CHANGELOG.md && standard-version -a"
},
"devDependencies": {
"@commitlint/cli": "7.5.0",
"@commitlint/config-conventional": "7.5.0",
"codacy-coverage": "3.4.0",
"cross-env": "5.2.0",
"env-cmd": "8.0.2",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.17.1",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"glob": "7.1.3",
"html-webpack-plugin": "3.2.0",
"husky": "1.3.1",
"interpolate-html-plugin": "3.0.0",
"json-server": "0.14.2",
"npm-run-all": "4.1.5",
"prettier": "1.17.0",
"pretty-quick": "1.10.0",
"script-ext-html-webpack-plugin": "2.1.3",
"standard-version": "4.4.0",
"uglifyjs-webpack-plugin": "2.1.1",
"webpack-cli": "3.2.3"
},
"release": {
"analyzeCommits": "conventional"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}