-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.99 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
{
"name": "subspace-relayer-front-end",
"version": "1.0.0",
"license": "Apache 2.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.3",
"@polkadot/api": "^8.2.1",
"bootstrap": "4.6.0",
"classnames": "2.3.1",
"date-fns": "^2.25.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"reactstrap": "^8.9.0"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/reactstrap": "^8.7.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"node-sass": "6.0.1",
"node-sass-package-importer": "5.3.2",
"react-scripts": "5.0.0",
"typescript": "^4.6.3"
},
"scripts": {
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"start": "react-scripts start",
"build": "react-scripts build",
"serve:build": "serve -s build",
"eject": "react-scripts eject",
"compile:scss": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js src/assets/scss/subspace-relayer.scss src/assets/css/subspace-relayer.css",
"minify:scss": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js src/assets/scss/subspace-relayer.scss src/assets/css/subspace-relayer.min.css --output-style compressed",
"map:scss": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js src/assets/scss/subspace-relayer.scss src/assets/css/subspace-relayer.css --source-map true",
"build:scss": "npm run compile:scss && npm run minify:scss && npm run map:scss"
},
"browserslist": {
"production": [
">0.2%",
"not ie <= 99",
"not android <= 4.4.4",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}