This repository has been archived by the owner on Jul 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "frontend",
"version": "0.1.0",
"description": "Core Pinster web user interface using React",
"repository": {
"type": "git",
"url": "git+https://github.com/IlluminusLimited/Frontend.git"
},
"author": "Joel Moser",
"license": "ISC",
"bugs": {
"url": "https://github.com/IlluminusLimited/Frontend/issues"
},
"homepage": "https://github.com/IlluminusLimited/Frontend#readme",
"dependencies": {
"auth0-js": "^9.11.1",
"jwt-decode": "^2.2.0",
"node-sass-chokidar": "^1.3.5",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-flip-move": "^3.0.3",
"react-images-upload": "^1.2.6",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.0.1",
"react-select": "^1.3.0"
},
"scripts": {
"lintjs": "eslint --config .eslintrc.json src/**/*.js",
"lint": "sass-lint --config .sass-lint.yml 'src/**/*.scss' --verbose --no-exit",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all -p build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"prettier": "^1.17.1",
"sass-lint": "^1.13.1",
"serverless": "^1.47.0",
"serverless-pseudo-parameters": "^1.6.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}