package.json 3.7 KB
Newer Older
Abinaya Sudhir's avatar
Abinaya Sudhir committed
1
{
2
    "name": "Gargantext",
3
    "version": "0.0.6.9.9.4.3",
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
        "css-npm": "npm run css-themes-npm",
        "css-themes-npm": "npm run css-default-theme && npm run css-dark-theme && npm run css-darkster-theme && npm run css-greyson-theme && npm run css-herbie-theme && npm run css-monotony-theme",
17 18 19 20 21
        "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",
22
        "server": "serve -l 8000 dist",
23
        "server-ssl": "ssl-serve --ssl dist",
24
        "build": "spago bundle-app --main Main --to dist/bundle.js",
25 26 27 28 29 30
        "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",
31
        "test": "gauge run specs/"
32 33 34
    },
    "dependencies": {
        "@popperjs/core": "^2.9.2",
35
        "@urql/core": "^2.3.3",
36 37
        "aes-js": "^3.1.1",
        "base-x": "^3.0.2",
arturo's avatar
arturo committed
38
        "bootstrap": "^4.6.0",
39
        "bootstrap-dark": "^1.0.3",
40
        "buffer": "^6.0.3",
41
        "create-react-class": "^15.6.3",
42 43
        "crypto": "^1.0.1",
        "d3": "^7.6.1",
44 45
        "echarts": "^5.1.2",
        "echarts-for-react": "^3.0.1",
46
        "esbuild": "^0.15.7",
47
        "graphology": "^0.25.1",
48
        "graphology-communities-louvain": "^2.0.1",
49
        "graphology-layout-forceatlas2": "^0.9.2",
50
        "graphology-layout-noverlap": "^0.4.2",
51
        "graphology-operators": "^1.6.0",
52 53
        "graphql": "^15.6.1",
        "graphql-ws": "^5.5.0",
54 55
        "highlightjs": "^9.16.2",
        "immer": "^9.0.5",
56
        "isomorphic-unfetch": "^3.1.0",
57
        "markdown-it": "^13.0.1",
58 59 60 61
        "prop-types": "^15.6.2",
        "pullstate": "^1.20.6",
        "react-awesome-popover": "^6.1.1",
        "react-bootstrap": "^1.5.2",
62
        "react-dom": "^17.0.2",
63 64
        "react-tooltip": "^4.2.8",
        "secp256k1": "^4.0.2",
65
        "sigma": "^2.4.0",
66
        "twgl.js": "^5.0.4"
67 68 69
    },
    "devDependencies": {
        "@babel/core": "^7.15.0",
70
        "@babel/preset-env": "^7.15.6",
71
        "@babel/preset-react": "^7.12.7",
72
        "@getgauge/cli": "^1.4.0",
73
        "parcel": "^2.8.2",
74 75 76
        "react-testing-library": "^8.0.1",
        "sass": "^1.35.2",
        "serve": "^12.0.0",
77
        "spago": "^0.20.9",
78
        "ssl-serve": "^6.5.8",
79
        "taiko": "latest",
80 81 82 83
        "vscode-languageserver": "^7.0.0",
        "xhr2": "^0.2.1"
    },
    "optionalDependencies": {
84
        "purescript-language-server": "^0.17.1"
85
    }
Abinaya Sudhir's avatar
Abinaya Sudhir committed
86
}