package.json 3.37 KB
Newer Older
Abinaya Sudhir's avatar
Abinaya Sudhir committed
1
{
2
    "name": "Gargantext",
3
    "version": "0.0.6.8.4",
4 5 6
    "scripts": {
        "generate-purs-packages-nix": "./nix/generate-purs-packages.nix",
        "generate-psc-packages-nix": "./nix/generate-packages-json.bash",
7
        "css": "yarn css-themes",
8
        "css-themes": "yarn css-default-theme && yarn css-dark-theme && yarn css-darkster-theme && yarn css-greyson-theme && yarn css-herbie-theme && yarn css-monotony-theme",
9
        "css-default-theme": "sass src/sass/themes/default.scss:dist/styles/bootstrap-default.css",
10
        "css-dark-theme": "cp node_modules/bootstrap-dark/src/bootstrap-dark.css dist/styles/bootstrap-dark.css",
11 12 13 14
        "css-darkster-theme": "sass src/sass/themes/darkster.scss:dist/styles/bootstrap-darkster.css",
        "css-greyson-theme": "sass src/sass/themes/greyson.scss:dist/styles/bootstrap-greyson.css",
        "css-herbie-theme": "sass src/sass/themes/herbie.scss:dist/styles/bootstrap-herbie.css",
        "css-monotony-theme": "sass src/sass/themes/monotony.scss:dist/styles/bootstrap-monotony.css",
15 16 17 18 19
        "docs": "pulp docs -- --format html",
        "repl": "pulp repl",
        "clean": "rm -Rf output node_modules",
        "clean-js": "rm -Rf node_modules",
        "clean-ps": "rm -Rf output",
20
        "server": "serve -l 8000 dist",
21
        "server-ssl": "ssl-serve --ssl dist",
22
        "build": "spago bundle-app --main Main --to dist/bundle.js",
23 24 25 26 27 28
        "prod": "yarn prod:compile && yarn prod:dce && yarn prod:bundle && yarn prod:pack",
        "prod:compile": "pulp build -- -g corefn",
        "prod:dce": "zephyr -f Main.main",
        "prod:bundle": "pulp browserify --skip-compile -o dce-output -t app.js",
        "prod:pack": "parcel build index.html -d prod --public-url . --no-source-maps",
        "test-pulp": "pulp test",
29
        "test": "gauge run specs/"
30 31 32
    },
    "dependencies": {
        "@popperjs/core": "^2.9.2",
33
        "@urql/core": "^2.3.3",
34 35
        "aes-js": "^3.1.1",
        "base-x": "^3.0.2",
arturo's avatar
arturo committed
36
        "bootstrap": "^4.6.0",
37 38
        "bootstrap-dark": "^1.0.3",
        "create-react-class": "^15.6.3",
39 40
        "crypto": "^1.0.1",
        "d3": "^7.6.1",
41 42
        "echarts": "^5.1.2",
        "echarts-for-react": "^3.0.1",
43
        "esbuild": "^0.15.7",
44
        "graphology": "^0.24.1",
45
        "graphology-layout-forceatlas2": "^0.9.2",
46
        "graphology-operators": "^1.6.0",
47 48
        "graphql": "^15.6.1",
        "graphql-ws": "^5.5.0",
49 50
        "highlightjs": "^9.16.2",
        "immer": "^9.0.5",
51
        "isomorphic-unfetch": "^3.1.0",
52
        "markdown-it": "^13.0.1",
53 54 55 56 57 58 59 60
        "prop-types": "^15.6.2",
        "pullstate": "^1.20.6",
        "react": "^17.0.2",
        "react-awesome-popover": "^6.1.1",
        "react-bootstrap": "^1.5.2",
        "react-dom": "^17.0.2",
        "react-tooltip": "^4.2.8",
        "secp256k1": "^4.0.2",
61 62
        "sigma": "^2.3.1",
        "twgl.js": "^5.0.4"
63 64 65
    },
    "devDependencies": {
        "@babel/core": "^7.15.0",
66
        "@babel/preset-env": "^7.15.6",
67
        "@babel/preset-react": "^7.12.7",
68
        "@getgauge/cli": "^1.4.0",
69
        "parcel": "^2.0.0-rc.0",
70 71 72
        "react-testing-library": "^8.0.1",
        "sass": "^1.35.2",
        "serve": "^12.0.0",
73
        "spago": "^0.20.9",
74
        "ssl-serve": "^6.5.8",
75
        "taiko": "latest",
76 77 78 79 80 81
        "vscode-languageserver": "^7.0.0",
        "xhr2": "^0.2.1"
    },
    "optionalDependencies": {
        "purescript-language-server": "^0.15.2"
    }
Abinaya Sudhir's avatar
Abinaya Sudhir committed
82
}