forked from lineupjs/lineup_app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.84 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
{
"name": "lineup_app",
"homepage": "https://github.com/datavisyn/lineup_app",
"version": "1.0.0-beta.1",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/datavisyn/lineup_app/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/datavisyn/lineup_app.git"
},
"private": true,
"scripts": {
"clean": "rimraf build dist src/**/*.map src/**/*.js tests/**/*.js tests/**/*.map",
"compile": "tsc",
"lint": "tslint --project tsconfig.json -c tslint.json && stylelint src/**/*.scss",
"docs": "typedoc --out ./build/docs/ src tsd.d.ts",
"prebuild": "npm run clean && (node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test)",
"pretest": "npm run clean && npm run compile",
"test": "echo 'no tests'",
"posttest": "npm run lint",
"build:dev": "webpack --mode development --devtool source-map",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch --devtool source-map",
"start": "webpack-dev-server --mode development --devtool source-map",
"preversion": "npm test",
"release:major": "npm version major && npm run build && git push --follow-tags",
"release:minor": "npm version minor && npm run build && git push --follow-tags",
"release:patch": "npm version patch && npm run build && git push --follow-tags",
"release:pre": "npm version prerelease && npm run build && git push --follow-tags",
"predist": "npm run build",
"dist": "mkdirp dist && cd build && tar cvzf ../dist/lineup_app.tar.gz --exclude \"docs\" * && cd .."
},
"devDependencies": {
"cache-loader": "^1.2.2",
"css-loader": "^0.28.11",
"extract-loader": "^2.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"fork-ts-checker-webpack-plugin": "^0.4.2",
"html-loader": "^0.5.5",
"json-loader": "^0.5.7",
"mkdirp": "^0.5.1",
"node-sass": "^4.9.3",
"raw-loader": "^1.0.0-beta.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.1.3",
"thread-loader": "^1.1.5",
"ts-loader": "^4.4.2",
"tslint": "^5.10.0",
"tslint-consistent-codestyle": "^1.13.1",
"tslint-eslint-rules": "^5.3.1",
"typedoc": "^0.11.1",
"typescript": "^2.9.2",
"url-loader": "^1.0.1",
"webpack": "^4.13.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"workbox-webpack-plugin": "^3.3.1"
},
"dependencies": {
"@types/materialize-css": "^1.0.3",
"@types/papaparse": "^4.5.0",
"lineupjs": "^3.1.7",
"materialize-css": "^0.100.2",
"papaparse": "^4.5.0",
"font-awesome": "^4.7.0",
"material-design-icons": "^3.0.1"
}
}